Flarum\Forum\Controller\LogOutController::__construct PHP Method

__construct() public method

public __construct ( Application $app, Illuminate\Contracts\Events\Dispatcher $events, SessionAuthenticator $authenticator, Rememberer $rememberer )
$app Flarum\Foundation\Application
$events Illuminate\Contracts\Events\Dispatcher
$authenticator Flarum\Http\SessionAuthenticator
$rememberer Flarum\Http\Rememberer
    public function __construct(Application $app, Dispatcher $events, SessionAuthenticator $authenticator, Rememberer $rememberer)
    {
        $this->app = $app;
        $this->events = $events;
        $this->authenticator = $authenticator;
        $this->rememberer = $rememberer;
    }
LogOutController