summaryrefslogtreecommitdiff
path: root/ext/ctype/ctype.stub.php
blob: 5ae356cc4f2a6226c3a9e19d67bb70be537f5636 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php

/** @generate-function-entries */

/** @param string|int $text */
function ctype_alnum(mixed $text): bool {}

/** @param string|int $text */
function ctype_alpha(mixed $text): bool {}

/** @param string|int $text */
function ctype_cntrl(mixed $text): bool {}

/** @param string|int $text */
function ctype_digit(mixed $text): bool {}

/** @param string|int $text */
function ctype_lower(mixed $text): bool {}

/** @param string|int $text */
function ctype_graph(mixed $text): bool {}

/** @param string|int $text */
function ctype_print(mixed $text): bool {}

/** @param string|int $text */
function ctype_punct(mixed $text): bool {}

/** @param string|int $text */
function ctype_space(mixed $text): bool {}

/** @param string|int $text */
function ctype_upper(mixed $text): bool {}

/** @param string|int $text */
function ctype_xdigit(mixed $text): bool {}