Skip to content

Commit 069fa1a

Browse files
committed
ctype functions
1 parent a00e4a3 commit 069fa1a

File tree

2 files changed

+37
-10
lines changed

2 files changed

+37
-10
lines changed

ext/ctype/ctype.stub.php

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,51 @@
22

33
/** @generate-class-entries */
44

5+
/**
6+
* @compile-time-eval
7+
*/
58
function ctype_alnum(mixed $text): bool {}
69

10+
/**
11+
* @compile-time-eval
12+
*/
713
function ctype_alpha(mixed $text): bool {}
814

15+
/**
16+
* @compile-time-eval
17+
*/
918
function ctype_cntrl(mixed $text): bool {}
1019

20+
/**
21+
* @compile-time-eval
22+
*/
1123
function ctype_digit(mixed $text): bool {}
1224

1325
function ctype_lower(mixed $text): bool {}
1426

27+
/**
28+
* @compile-time-eval
29+
*/
1530
function ctype_graph(mixed $text): bool {}
1631

32+
/**
33+
* @compile-time-eval
34+
*/
1735
function ctype_print(mixed $text): bool {}
1836

37+
/**
38+
* @compile-time-eval
39+
*/
1940
function ctype_punct(mixed $text): bool {}
2041

42+
/**
43+
* @compile-time-eval
44+
*/
2145
function ctype_space(mixed $text): bool {}
2246

2347
function ctype_upper(mixed $text): bool {}
2448

49+
/**
50+
* @compile-time-eval
51+
*/
2552
function ctype_xdigit(mixed $text): bool {}

ext/ctype/ctype_arginfo.h

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)