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