Skip to content

Commit

Permalink
Fixed error return signatures for \SplFileInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
siganushka committed Feb 24, 2022
1 parent 1f89d35 commit 667ebb8
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions resources/functionMap.php
Expand Up @@ -11251,24 +11251,24 @@
'SplEnum::getConstList' => ['array', 'include_default='=>'bool'],
'SplFileInfo::__construct' => ['void', 'file_name'=>'string'],
'SplFileInfo::__toString' => ['string'],
'SplFileInfo::getATime' => ['int'],
'SplFileInfo::getATime' => ['__benevolent<int|false>'],
'SplFileInfo::getBasename' => ['string', 'suffix='=>'string'],
'SplFileInfo::getCTime' => ['int'],
'SplFileInfo::getExtension' => ['string'],
'SplFileInfo::getFileInfo' => ['SplFileInfo', 'class_name='=>'string'],
'SplFileInfo::getFilename' => ['string'],
'SplFileInfo::getGroup' => ['int'],
'SplFileInfo::getInode' => ['int'],
'SplFileInfo::getLinkTarget' => ['string'],
'SplFileInfo::getMTime' => ['int'],
'SplFileInfo::getOwner' => ['int'],
'SplFileInfo::getGroup' => ['__benevolent<int|false>'],
'SplFileInfo::getInode' => ['__benevolent<int|false>'],
'SplFileInfo::getLinkTarget' => ['__benevolent<string|false>'],
'SplFileInfo::getMTime' => ['__benevolent<int|false>'],
'SplFileInfo::getOwner' => ['__benevolent<int|false>'],
'SplFileInfo::getPath' => ['string'],
'SplFileInfo::getPathInfo' => ['SplFileInfo', 'class_name='=>'string'],
'SplFileInfo::getPathname' => ['string'],
'SplFileInfo::getPerms' => ['int'],
'SplFileInfo::getRealPath' => ['string|false'],
'SplFileInfo::getSize' => ['int'],
'SplFileInfo::getType' => ['string'],
'SplFileInfo::getPerms' => ['__benevolent<int|false>'],
'SplFileInfo::getRealPath' => ['__benevolent<string|false>'],
'SplFileInfo::getSize' => ['__benevolent<int|false>'],
'SplFileInfo::getType' => ['__benevolent<string|false>'],
'SplFileInfo::isDir' => ['bool'],
'SplFileInfo::isExecutable' => ['bool'],
'SplFileInfo::isFile' => ['bool'],
Expand Down

0 comments on commit 667ebb8

Please sign in to comment.