1<?php 2 3/** @generate-class-entries */ 4 5function ctype_alnum(mixed $text): bool {} 6 7function ctype_alpha(mixed $text): bool {} 8 9function ctype_cntrl(mixed $text): bool {} 10 11function ctype_digit(mixed $text): bool {} 12 13function ctype_lower(mixed $text): bool {} 14 15function ctype_graph(mixed $text): bool {} 16 17function ctype_print(mixed $text): bool {} 18 19function ctype_punct(mixed $text): bool {} 20 21function ctype_space(mixed $text): bool {} 22 23function ctype_upper(mixed $text): bool {} 24 25function ctype_xdigit(mixed $text): bool {} 26