|
2 | 2 |
|
3 | 3 | /** @generate-function-entries */
|
4 | 4 |
|
5 |
| -function ctype_alnum($text): bool {} |
| 5 | +/** @param string|int $text */ |
| 6 | +function ctype_alnum(mixed $text): bool {} |
6 | 7 |
|
7 |
| -function ctype_alpha($text): bool {} |
| 8 | +/** @param string|int $text */ |
| 9 | +function ctype_alpha(mixed $text): bool {} |
8 | 10 |
|
9 |
| -function ctype_cntrl($text): bool {} |
| 11 | +/** @param string|int $text */ |
| 12 | +function ctype_cntrl(mixed $text): bool {} |
10 | 13 |
|
11 |
| -function ctype_digit($text): bool {} |
| 14 | +/** @param string|int $text */ |
| 15 | +function ctype_digit(mixed $text): bool {} |
12 | 16 |
|
13 |
| -function ctype_lower($text): bool {} |
| 17 | +/** @param string|int $text */ |
| 18 | +function ctype_lower(mixed $text): bool {} |
14 | 19 |
|
15 |
| -function ctype_graph($text): bool {} |
| 20 | +/** @param string|int $text */ |
| 21 | +function ctype_graph(mixed $text): bool {} |
16 | 22 |
|
17 |
| -function ctype_print($text): bool {} |
| 23 | +/** @param string|int $text */ |
| 24 | +function ctype_print(mixed $text): bool {} |
18 | 25 |
|
19 |
| -function ctype_punct($text): bool {} |
| 26 | +/** @param string|int $text */ |
| 27 | +function ctype_punct(mixed $text): bool {} |
20 | 28 |
|
21 |
| -function ctype_space($text): bool {} |
| 29 | +/** @param string|int $text */ |
| 30 | +function ctype_space(mixed $text): bool {} |
22 | 31 |
|
23 |
| -function ctype_upper($text): bool {} |
| 32 | +/** @param string|int $text */ |
| 33 | +function ctype_upper(mixed $text): bool {} |
24 | 34 |
|
25 |
| -function ctype_xdigit($text): bool {} |
| 35 | +/** @param string|int $text */ |
| 36 | +function ctype_xdigit(mixed $text): bool {} |
0 commit comments