Cartalyst\Sentinel\Laravel\SentinelServiceProvider::garbageCollect PHP Method

garbageCollect() protected method

Garbage collect activations and reminders.
protected garbageCollect ( ) : void
return 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']);
    }