Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | abstract class CharType |
||
16 | { |
||
17 | /** |
||
18 | * Special characters excused within the string pattern |
||
19 | * Handy for username validations |
||
20 | * @var array $allowedSpecialChars |
||
21 | */ |
||
22 | protected $allowedSpecialChars = []; |
||
23 | |||
24 | /** |
||
25 | * AlphaNumeric constructor. |
||
26 | * @param array $allowedSpecialChars |
||
27 | */ |
||
28 | public function __construct($allowedSpecialChars = []) |
||
31 | } |
||
32 | } |