Skip to content

Commit

Permalink
Update signatures according to the PHP manual (#5904)
Browse files Browse the repository at this point in the history
* Update signatures according to the PHP manual (#5903)

* Fix return type based on php-src
  • Loading branch information
christeredvartsen committed Jun 7, 2021
1 parent 5bfb841 commit 3f0de26
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dictionaries/CallMap.php
Original file line number Diff line number Diff line change
Expand Up @@ -12043,11 +12043,11 @@
'SessionHandler::validateId' => ['bool', 'session_id'=>'string'],
'SessionHandler::write' => ['bool', 'id'=>'string', 'data'=>'string'],
'SessionHandlerInterface::close' => ['bool'],
'SessionHandlerInterface::destroy' => ['bool', 'session_id'=>'string'],
'SessionHandlerInterface::gc' => ['bool', 'maxlifetime'=>'int'],
'SessionHandlerInterface::open' => ['bool', 'save_path'=>'string', 'name'=>'string'],
'SessionHandlerInterface::read' => ['string', 'session_id'=>'string'],
'SessionHandlerInterface::write' => ['bool', 'session_id'=>'string', 'session_data'=>'string'],
'SessionHandlerInterface::destroy' => ['bool', 'id'=>'string'],
'SessionHandlerInterface::gc' => ['int|false', 'max_lifetime'=>'int'],
'SessionHandlerInterface::open' => ['bool', 'path'=>'string', 'name'=>'string'],
'SessionHandlerInterface::read' => ['string|false', 'id'=>'string'],
'SessionHandlerInterface::write' => ['bool', 'id'=>'string', 'data'=>'string'],
'SessionIdInterface::create_sid' => ['string'],
'SessionUpdateTimestampHandler::updateTimestamp' => ['bool', 'id'=>'string', 'data'=>'string'],
'SessionUpdateTimestampHandler::validateId' => ['char', 'id'=>'string'],
Expand Down

0 comments on commit 3f0de26

Please sign in to comment.