Skip to content

Commit

Permalink
Update string compare return values
Browse files Browse the repository at this point in the history
  • Loading branch information
bytestream committed Jun 10, 2022
1 parent 943d95e commit d1e0b1b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/functionMap.php
Expand Up @@ -11693,10 +11693,10 @@
'str_shuffle' => ['string', 'str'=>'string'],
'str_split' => ['non-empty-array<int,string>|false', 'str'=>'string', 'split_length='=>'positive-int'],
'str_word_count' => ['array<int,string>|int|false', 'string'=>'string', 'format='=>'int', 'charlist='=>'string'],
'strcasecmp' => ['int', 'str1'=>'string', 'str2'=>'string'],
'strcasecmp' => ['int<-1, 1>', 'str1'=>'string', 'str2'=>'string'],
'strchr' => ['string|false', 'haystack'=>'string', 'needle'=>'string', 'before_needle='=>'bool'],
'strcmp' => ['int', 'str1'=>'string', 'str2'=>'string'],
'strcoll' => ['int', 'str1'=>'string', 'str2'=>'string'],
'strcmp' => ['int<-1, 1>', 'str1'=>'string', 'str2'=>'string'],
'strcoll' => ['int<-1, 1>', 'str1'=>'string', 'str2'=>'string'],
'strcspn' => ['int', 'str'=>'string', 'mask'=>'string', 'start='=>'int', 'length='=>'int'],
'stream_bucket_append' => ['void', 'brigade'=>'resource', 'bucket'=>'object'],
'stream_bucket_make_writeable' => ['stdClass|null', 'brigade'=>'resource'],
Expand Down

0 comments on commit d1e0b1b

Please sign in to comment.