Cartalyst\Sentinel\Native\SentinelBootstrapper::getEventDispatcher PHP 메소드

getEventDispatcher() 보호된 메소드

Returns the event dispatcher.
protected getEventDispatcher ( ) : Illuminate\Events\Dispatcher
리턴 Illuminate\Events\Dispatcher
    protected function getEventDispatcher()
    {
        if (!$this->dispatcher) {
            $this->dispatcher = new Dispatcher();
        }
        return $this->dispatcher;
    }