|
36 | 36 | | Code format |
37 | 37 | |-------------------------------------------------------------------------- |
38 | 38 | | |
39 | | - | Define the format of the code. The options are 'numeric', 'alphanumeric' or 'mixed'. |
| 39 | + | Define the format of the code. The options are |
| 40 | + | 'numeric', 'alphanumeric' or 'mixed'. |
40 | 41 | | The default for numeric format is '0123456789'. |
41 | 42 | | |
42 | 43 | */ |
|
49 | 50 | |-------------------------------------------------------------------------- |
50 | 51 | | |
51 | 52 | | Define the characters of the generated code. |
52 | | - | The code generator dynamically selects the appropriate character set depending on the chosen code format. |
| 53 | + | The code generator dynamically selects the appropriate |
| 54 | + | character set depending on the chosen code format. |
53 | 55 | | |
54 | 56 | */ |
55 | 57 |
|
56 | 58 | 'numeric_characters' => '0123456789', // Default for numeric format. |
57 | | - 'alphanumeric_characters' => '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ', // Default for alphanumeric format. |
58 | | - 'mixed_characters' => '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*()-_=+[]{};:<>,.?/', // Combined set. |
| 59 | + 'alphanumeric_characters' => '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ', |
| 60 | + 'mixed_characters' => '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*()-_=+[]{};:<>,.?/', |
| 61 | + |
| 62 | + /* |
| 63 | + |-------------------------------------------------------------------------- |
| 64 | + | Config Validation |
| 65 | + |-------------------------------------------------------------------------- |
| 66 | + | |
| 67 | + | Choose whether you want the config to be validated. This |
| 68 | + | can be useful for ensuring that your config values are |
| 69 | + | safe to use. |
| 70 | + | |
| 71 | + */ |
| 72 | + |
| 73 | + 'validate_config' => true, |
59 | 74 |
|
60 | 75 | /* |
61 | 76 | |-------------------------------------------------------------------------- |
|
0 commit comments