restructured session driver interfaces and added cookie session driver.

This commit is contained in:
Taylor Otwell
2011-08-02 21:05:20 -05:00
parent 3583bc3b09
commit 32f383205e
9 changed files with 76 additions and 35 deletions

View File

@@ -26,12 +26,4 @@ interface Driver {
*/
public function delete($id);
/**
* Delete all expired sessions.
*
* @param int $expiration
* @return void
*/
public function sweep($expiration);
}