app = $app; $this->response = $response; } /** * Run the request filter. * * @return mixed */ public function filter() { if ($this->app->isDownForMaintenance()) { return $this->response->make('Be right back!', 503); } } }