first commit of 2.0
This commit is contained in:
13
laravel/session/sweeper.php
Normal file
13
laravel/session/sweeper.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php namespace Laravel\Session;
|
||||
|
||||
interface Sweeper {
|
||||
|
||||
/**
|
||||
* Delete all expired sessions.
|
||||
*
|
||||
* @param int $expiration
|
||||
* @return void
|
||||
*/
|
||||
public function sweep($expiration);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user