/** * Handle user coming back from SSO service */ public function validateAction() { // validate the request $result = $this->authentication->onCallBack(); if ($result instanceof RedirectResponse) { return $result; } }
public function __construct(Request $request) { parent::__construct($request); $this->server = $this->registry->getConfig("INNOVATIVE_PATRON_API", true); $this->server = rtrim($this->server, '/'); }