mirror of
https://github.com/danog/psalm.git
synced 2025-01-22 13:51:54 +01:00
Merge pull request #8403 from paulfedorow/imageinterlace-callmap-fix-4.x
Fix `imageinterlace` function signature
This commit is contained in:
commit
24b8b8e6ce
@ -5410,7 +5410,7 @@ return [
|
||||
'imagegif' => ['bool', 'image'=>'GdImage', 'file='=>'string|resource|null'],
|
||||
'imagegrabscreen' => ['false|GdImage'],
|
||||
'imagegrabwindow' => ['false|GdImage', 'handle'=>'int', 'client_area='=>'int'],
|
||||
'imageinterlace' => ['int|false', 'image'=>'GdImage', 'enable='=>'int'],
|
||||
'imageinterlace' => ['bool', 'image'=>'GdImage', 'enable='=>'bool|null'],
|
||||
'imageistruecolor' => ['bool', 'image'=>'GdImage'],
|
||||
'imagejpeg' => ['bool', 'image'=>'GdImage', 'file='=>'string|resource|null', 'quality='=>'int'],
|
||||
'imagelayereffect' => ['bool', 'image'=>'GdImage', 'effect'=>'int'],
|
||||
|
@ -647,7 +647,7 @@ return [
|
||||
],
|
||||
'imageinterlace' => [
|
||||
'old' => ['int|false', 'image'=>'resource', 'enable='=>'int'],
|
||||
'new' => ['int|false', 'image'=>'GdImage', 'enable='=>'int'],
|
||||
'new' => ['int|bool', 'image'=>'GdImage', 'enable='=>'bool|null'],
|
||||
],
|
||||
'imageistruecolor' => [
|
||||
'old' => ['bool', 'image'=>'resource'],
|
||||
|
@ -233,6 +233,10 @@ return [
|
||||
'old' => ['HashContext', 'algo'=>'string', 'flags='=>'int', 'key='=>'string'],
|
||||
'new' => ['HashContext', 'algo'=>'string', 'flags='=>'int', 'key='=>'string', 'options='=>'array'],
|
||||
],
|
||||
'imageinterlace' => [
|
||||
'old' => ['int|bool', 'image'=>'GdImage', 'enable='=>'bool|null'],
|
||||
'new' => ['bool', 'image'=>'GdImage', 'enable='=>'bool|null'],
|
||||
],
|
||||
'imap_append' => [
|
||||
'old' => ['bool', 'imap'=>'resource', 'folder'=>'string', 'message'=>'string', 'options='=>'string', 'internal_date='=>'string'],
|
||||
'new' => ['bool', 'imap'=>'IMAP\Connection', 'folder'=>'string', 'message'=>'string', 'options='=>'string', 'internal_date='=>'string'],
|
||||
|
@ -112,7 +112,6 @@ class InternalCallMapHandlerTest extends TestCase
|
||||
'imagefilter',
|
||||
'imagegd',
|
||||
'imagegd2',
|
||||
'imageinterlace',
|
||||
'imageopenpolygon',
|
||||
'imagepolygon',
|
||||
'imagerotate',
|
||||
|
Loading…
x
Reference in New Issue
Block a user