Cartalyst\Sentinel\Laravel\SentinelServiceProvider::garbageCollect PHP 메소드

garbageCollect() 보호된 메소드

Garbage collect activations and reminders.
protected garbageCollect ( ) : void
리턴 void
    protected function garbageCollect()
    {
        $config = $this->app['config']->get('cartalyst.sentinel');
        $this->sweep($this->app['sentinel.activations'], $config['activations']['lottery']);
        $this->sweep($this->app['sentinel.reminders'], $config['reminders']['lottery']);
    }