plugin_status = $plugin_status; $this->flash = $flash; } /** * @return null|Redirection_Response */ public function handle() { if ( $this->plugin_status->client_completed_registration() ) { $this->flash->add_message( 'error', 'account-exists' ); return $this->redirection( Route::SUBMENU_DASHBOARD ); } return $this->next->handle(); } }