options = $options; $this->flash = $flash; } /** * @return null|Redirection_Response */ public function handle() { if ( $this->options->is_plan_basic() ) { $this->flash->add_message( 'error', 'premium-only' ); return new Redirection_Response( Route::SUBMENU_CHANNEL ); } return $this->next->handle(); } }