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