@@ -15,15 +15,15 @@ Or maybe just a confirmation link when updating their credentials?
1515
1616Ok, ok - maybe before cancelling a subscription or better, before sending funds out.
1717
18- Well, now you can. Attach listeners to your models for sending out emails (or any other
18+ Well, now you can. Attach listeners to your models for sending out emails (or any other
1919notification method of your choice), and you're good to go!
2020
2121## Install
2222
2323Using [ Composer] [ composer ] :
2424
2525```
26- composer require muffin/tokenize:1.0.x-dev
26+ composer require muffin/tokenize
2727```
2828
2929You then need to load the plugin. You can use the shell command:
@@ -54,12 +54,12 @@ bin/cake migrations migrate --plugin Muffin/Tokenize
5454## How it works
5555
5656When creating or updating a record, and if the data contains any * tokenized* field(s), a token
57- will automatically be created along with the value of the field(s) in question.
57+ will automatically be created along with the value of the field(s) in question.
5858
59- When this happens the ` Model.afterTokenize ` event is fired and passed the operation's related
60- entity and the associated token that was created for it.
59+ When this happens the ` Model.afterTokenize ` event is fired and passed the operation's related
60+ entity and the associated token that was created for it.
6161
62- The initial (save or update) operation resumes but without the * tokenized* fields.
62+ The initial (save or update) operation resumes but without the * tokenized* fields.
6363
6464The * tokenized* fields will only be updated upon submission of their associated token.
6565
0 commit comments