File tree Expand file tree Collapse file tree
library/Zend/Session/SaveHandler Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ interface Zend_Session_SaveHandler_Interface
3939 * @param string $save_path
4040 * @param string $name
4141 */
42- public function open ($ save_path , $ name );
42+ public function open (string $ save_path , string $ name );
4343
4444 /**
4545 * Close Session - free resources
@@ -52,15 +52,15 @@ public function close();
5252 *
5353 * @param string $id
5454 */
55- public function read ($ id );
55+ public function read (string $ id );
5656
5757 /**
5858 * Write Session - commit data to resource
5959 *
6060 * @param string $id
6161 * @param mixed $data
6262 */
63- public function write ($ id , $ data );
63+ public function write (string $ id , string $ data );
6464
6565 /**
6666 * Destroy Session - remove data from resource for
@@ -76,5 +76,5 @@ public function destroy($id);
7676 *
7777 * @param int $maxlifetime
7878 */
79- public function gc ($ maxlifetime );
79+ public function gc (int $ maxlifetime );
8080}
You can’t perform that action at this time.
0 commit comments