Skip to content

Commit

Permalink
Update ctype_* function signature
Browse files Browse the repository at this point in the history
  • Loading branch information
BackEndTea authored and ondrejmirtes committed Jan 10, 2021
1 parent 930560e commit 2198526
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions resources/functionMap.php
Original file line number Diff line number Diff line change
Expand Up @@ -1376,17 +1376,17 @@
'crc32' => ['int', 'str'=>'string'],
'create_function' => ['string', 'args'=>'string', 'code'=>'string'],
'crypt' => ['string', 'str'=>'string', 'salt='=>'string'],
'ctype_alnum' => ['bool', 'c'=>'string|int'],
'ctype_alpha' => ['bool', 'c'=>'string|int'],
'ctype_cntrl' => ['bool', 'c'=>'string|int'],
'ctype_digit' => ['bool', 'c'=>'string|int'],
'ctype_graph' => ['bool', 'c'=>'string|int'],
'ctype_lower' => ['bool', 'c'=>'string|int'],
'ctype_print' => ['bool', 'c'=>'string|int'],
'ctype_punct' => ['bool', 'c'=>'string|int'],
'ctype_space' => ['bool', 'c'=>'string|int'],
'ctype_upper' => ['bool', 'c'=>'string|int'],
'ctype_xdigit' => ['bool', 'c'=>'string|int'],
'ctype_alnum' => ['bool', 'c'=>'mixed'],
'ctype_alpha' => ['bool', 'c'=>'mixed'],
'ctype_cntrl' => ['bool', 'c'=>'mixed'],
'ctype_digit' => ['bool', 'c'=>'mixed'],
'ctype_graph' => ['bool', 'c'=>'mixed'],
'ctype_lower' => ['bool', 'c'=>'mixed'],
'ctype_print' => ['bool', 'c'=>'mixed'],
'ctype_punct' => ['bool', 'c'=>'mixed'],
'ctype_space' => ['bool', 'c'=>'mixed'],
'ctype_upper' => ['bool', 'c'=>'mixed'],
'ctype_xdigit' => ['bool', 'c'=>'mixed'],
'cubrid_affected_rows' => ['int', 'req_identifier='=>''],
'cubrid_bind' => ['bool', 'req_identifier'=>'resource', 'bind_param'=>'int', 'bind_value'=>'mixed', 'bind_value_type='=>'string'],
'cubrid_client_encoding' => ['string', 'conn_identifier='=>''],
Expand Down

0 comments on commit 2198526

Please sign in to comment.