Skip to content

Commit

Permalink
Merge pull request #10177 from ravage84/patch-8
Browse files Browse the repository at this point in the history
Update return description
  • Loading branch information
markstory committed Feb 6, 2017
2 parents f9ff4cd + dd65c3c commit 8a4a496
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Network/Session/CacheSession.php
Expand Up @@ -111,7 +111,7 @@ public function write($id, $data)
* Method called on the destruction of a cache session.
*
* @param int $id ID that uniquely identifies session in cache
* @return bool True for successful delete, false otherwise.
* @return bool Always true.
*/
public function destroy($id)
{
Expand All @@ -124,7 +124,7 @@ public function destroy($id)
* Helper function called on gc for cache sessions.
*
* @param string $maxlifetime Sessions that have not updated for the last maxlifetime seconds will be removed.
* @return bool True (irrespective of whether or not the garbage is being successfully collected)
* @return bool Always true.
*/
public function gc($maxlifetime)
{
Expand Down

0 comments on commit 8a4a496

Please sign in to comment.