13 lines
187 B
PHP
13 lines
187 B
PHP
|
|
<?php namespace System\Session;
|
||
|
|
|
||
|
|
interface Sweeper {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Delete all expired sessions.
|
||
|
|
*
|
||
|
|
* @param int $expiration
|
||
|
|
* @return void
|
||
|
|
*/
|
||
|
|
public function sweep($expiration);
|
||
|
|
|
||
|
|
}
|