|
12 | 12 | /**
|
13 | 13 | * Lazy loads, stores and exposes sanitizer objects
|
14 | 14 | *
|
15 |
| - * @method absint(mixed $input): int |
16 |
| - * @method alnum(mixed $input): string |
17 |
| - * @method alpha(mixed $input): string |
18 |
| - * @method bool(mixed $input): bool |
19 |
| - * @method email(string $input): string |
20 |
| - * @method float(mixed $input): float |
21 |
| - * @method int(string $input): int |
22 |
| - * @method lower(string $input): string |
23 |
| - * @method lowerfirst(string $input): string |
24 |
| - * @method regex(mixed $input, mixed $pattern, mixed $replace): mixed |
25 |
| - * @method remove(mixed $input, mixed $replace): mixed |
26 |
| - * @method replace(mixed $input, mixed $source, mixed $target): mixed |
27 |
| - * @method special(string $input): string |
28 |
| - * @method specialfull(string $input): string |
29 |
| - * @method string(string $input): string |
30 |
| - * @method stringlegacy(mixed $input): string |
31 |
| - * @method striptags(string $input): string |
32 |
| - * @method trim(string $input): string |
33 |
| - * @method upper(string $input): string |
34 |
| - * @method upperFirst(string $input): string |
35 |
| - * @method upperWords(string $input): string|null |
36 |
| - * @method url(string $input): string|null |
| 15 | + * @method int absint(mixed $input) |
| 16 | + * @method string alnum(mixed $input) |
| 17 | + * @method string alpha(mixed $input) |
| 18 | + * @method bool bool(mixed $input) |
| 19 | + * @method string email(string $input) |
| 20 | + * @method float float(mixed $input) |
| 21 | + * @method int int(string $input) |
| 22 | + * @method string lower(string $input) |
| 23 | + * @method string lowerfirst(string $input) |
| 24 | + * @method mixed regex(mixed $input, mixed $pattern, mixed $replace) |
| 25 | + * @method mixed remove(mixed $input, mixed $replace) |
| 26 | + * @method mixed replace(mixed $input, mixed $source, mixed $target) |
| 27 | + * @method string special(string $input) |
| 28 | + * @method string specialfull(string $input) |
| 29 | + * @method string string(string $input) |
| 30 | + * @method string stringlegacy(mixed $input) |
| 31 | + * @method string striptags(string $input) |
| 32 | + * @method string trim(string $input) |
| 33 | + * @method string upper(string $input) |
| 34 | + * @method string upperFirst(string $input) |
| 35 | + * @method string|null upperWords(string $input) |
| 36 | + * @method string|null url(string $input) |
37 | 37 | *
|
38 | 38 | * @property array $mapper
|
39 | 39 | * @property array $services
|
|
0 commit comments