Skip to content

Commit

Permalink
functionMap: fix return type of Phar::offsetGet()
Browse files Browse the repository at this point in the history
this is incorrectly written as int on php.net.
  • Loading branch information
dktapps authored and ondrejmirtes committed Dec 12, 2019
1 parent 3e2e245 commit 11cdfae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Reflection/SignatureMap/functionMap.php
Original file line number Diff line number Diff line change
Expand Up @@ -8650,7 +8650,7 @@
'Phar::mount' => ['void', 'pharpath'=>'string', 'externalpath'=>'string'],
'Phar::mungServer' => ['', 'munglist'=>'array'],
'Phar::offsetExists' => ['bool', 'offset'=>'string'],
'Phar::offsetGet' => ['int', 'offset'=>'string'],
'Phar::offsetGet' => ['PharFileInfo', 'offset'=>'string'],
'Phar::offsetSet' => ['', 'offset'=>'string', 'value'=>'string'],
'Phar::offsetUnset' => ['bool', 'offset'=>'string'],
'Phar::running' => ['string', 'retphar='=>'bool'],
Expand Down

0 comments on commit 11cdfae

Please sign in to comment.