Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions src/Config/SessionConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class SessionConfig extends StandardConfig
*
* @param string $storageName
* @param mixed $storageValue
* @return SessionConfiguration
* @return SessionConfig
*/
public function setStorageOption($storageName, $storageValue)
{
Expand Down Expand Up @@ -129,7 +129,7 @@ public function getStorageOption($storageOption)
* Set session.save_handler
*
* @param string $phpSaveHandler
* @return SessionConfiguration
* @return SessionConfig
* @throws Exception\InvalidArgumentException
*/
public function setPhpSaveHandler($phpSaveHandler)
Expand All @@ -152,7 +152,7 @@ public function setPhpSaveHandler($phpSaveHandler)
* Set session.serialize_handler
*
* @param string $serializeHandler
* @return SessionConfiguration
* @return SessionConfig
* @throws Exception\InvalidArgumentException
*/
public function setSerializeHandler($serializeHandler)
Expand All @@ -176,7 +176,7 @@ public function setSerializeHandler($serializeHandler)
* Set cache limiter
*
* @param $cacheLimiter
* @return SessionConfiguration
* @return SessionConfig
* @throws Exception\InvalidArgumentException
*/
public function setCacheLimiter($cacheLimiter)
Expand All @@ -194,7 +194,7 @@ public function setCacheLimiter($cacheLimiter)
* Set session.hash_function
*
* @param string|int $hashFunction
* @return SessionConfiguration
* @return SessionConfig
* @throws Exception\InvalidArgumentException
*/
public function setHashFunction($hashFunction)
Expand All @@ -214,7 +214,7 @@ public function setHashFunction($hashFunction)
* Set session.hash_bits_per_character
*
* @param int $hashBitsPerCharacter
* @return SessionConfiguration
* @return SessionConfig
* @throws Exception\InvalidArgumentException
*/
public function setHashBitsPerCharacter($hashBitsPerCharacter)
Expand Down
3 changes: 2 additions & 1 deletion src/Container.php
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,7 @@ public function setExpirationSeconds($ttl, $vars = null)
*
* @param int $hops
* @param null|string|array $vars
* @throws Exception\InvalidArgumentException
* @return Container
*/
public function setExpirationHops($hops, $vars = null)
Expand Down Expand Up @@ -550,4 +551,4 @@ public function setExpirationHops($hops, $vars = null)
);
return $this;
}
}
}

0 comments on commit aba47b0

Please sign in to comment.