issues
search
guzzle
/
psr7
PSR-7 HTTP message library
MIT License
7.88k
stars
3
forks
source link
[2.6] Various fixes
#582
Closed
GrahamCampbell
closed
1 year ago
GrahamCampbell
commented
1 year ago
Fixed bad assumptions around PHP array key types (PHP has jank where
$foo['1'] = true
will actually result in the key being the integer
1
, so pretty much everywhere where we thought we had string-key maps, we actually do not.
Replaced
call_user_func*
with native calls.
Improved type information here and there
$foo['1'] = true
will actually result in the key being the integer1
, so pretty much everywhere where we thought we had string-key maps, we actually do not.call_user_func*
with native calls.