Skip to content

Commit b06c244

Browse files
New Token and multitoken Trait
1 parent 20e7211 commit b06c244

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you want you can use the [facade](http://laravel.com/docs/facades). Add the r
3636
To use new trait token you need to do some changes in the model that contain the token column.
3737
##### One Column Token
3838

39-
#####One token Trait allow you to generate token for one columns in the table
39+
##### One token Trait allow you to generate token for one columns in the table
4040

4141
* To use one column token you need to add `` use DirapeToken;`` in the model .
4242
* In database we use default column called ``dt_token`` to replace with your column name add `` protected $DT_Column='column_name';`` in the model .
@@ -78,7 +78,7 @@ To use new trait token you need to do some changes in the model that contain the
7878
```
7979
##### Multi Column Token
8080

81-
#####Multi token allow you to generate tokens for multi columns in the same table
81+
##### Multi token allow you to generate tokens for multi columns in the same table
8282

8383
* To use multi column token you need to add `` use DirapeMultiToken;`` in the model .
8484
* Columns settings are not set by default so you need to make your custom settings in the model

src/DirapeMultiToken.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ trait DirapeMultiToken
99
* generate the token
1010
*
1111
* @param string $type
12-
* @param strin $column
12+
* @param string $column
1313
* @param integer $size
1414
* @param boolean $specialCharacter
1515
*/

src/DirapeToken.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ trait DirapeToken
1313
* generate the token
1414
*
1515
* @param string $type
16-
* @param strin $column
16+
* @param string $column
1717
* @param integer $size
1818
* @param boolean $specialCharacter
1919
*/

0 commit comments

Comments
 (0)