1 | <?php |
||
8 | trait ValidationTrait |
||
9 | { |
||
10 | /** |
||
11 | * @param $word |
||
12 | * @return bool |
||
13 | */ |
||
14 | 3 | public static function isCyrillic($word) |
|
18 | |||
19 | /** |
||
20 | * @param $word |
||
21 | * @return bool |
||
22 | */ |
||
23 | 3 | public static function isLatin($word) |
|
27 | |||
28 | /** |
||
29 | * @param $word |
||
30 | * @return bool |
||
31 | */ |
||
32 | 5 | public static function isText($word) |
|
36 | |||
37 | /** |
||
38 | * @param $digit |
||
39 | * @return bool |
||
40 | */ |
||
41 | 3 | public static function isInteger($digit) |
|
45 | } |