File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ If you want you can use the [facade](http://laravel.com/docs/facades). Add the r
36
36
To use new trait token you need to do some changes in the model that contain the token column.
37
37
##### One Column Token
38
38
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
40
40
41
41
* To use one column token you need to add `` use DirapeToken; `` in the model .
42
42
* 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
78
78
```
79
79
##### Multi Column Token
80
80
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
82
82
83
83
* To use multi column token you need to add `` use DirapeMultiToken; `` in the model .
84
84
* Columns settings are not set by default so you need to make your custom settings in the model
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ trait DirapeMultiToken
9
9
* generate the token
10
10
*
11
11
* @param string $type
12
- * @param strin $column
12
+ * @param string $column
13
13
* @param integer $size
14
14
* @param boolean $specialCharacter
15
15
*/
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ trait DirapeToken
13
13
* generate the token
14
14
*
15
15
* @param string $type
16
- * @param strin $column
16
+ * @param string $column
17
17
* @param integer $size
18
18
* @param boolean $specialCharacter
19
19
*/
You can’t perform that action at this time.
0 commit comments