mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-09-01 02:44:13 +00:00
cross login
This commit is contained in:
@@ -18,16 +18,16 @@ class CrossAuthenticateUserLogic extends AbstractControllerLogic
|
||||
}
|
||||
|
||||
/** @var CrossAuthenticationProcessor */
|
||||
private $cressAuthenticationProcessor;
|
||||
private $crossAuthenticationProcessor;
|
||||
|
||||
|
||||
/**
|
||||
* CrossAuthenticateUserLogic constructor.
|
||||
* @param CrossAuthenticationProcessor $authenticationProcessor
|
||||
*/
|
||||
public function __construct(CrossAuthenticationProcessor $cressAuthenticationProcessor)
|
||||
public function __construct(CrossAuthenticationProcessor $crossAuthenticationProcessor)
|
||||
{
|
||||
$this->cressAuthenticationProcessor = $cressAuthenticationProcessor;
|
||||
$this->crossAuthenticationProcessor = $crossAuthenticationProcessor;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -38,7 +38,7 @@ class CrossAuthenticateUserLogic extends AbstractControllerLogic
|
||||
* @throws \App\Classes\Exceptions\RequestValidationException
|
||||
*/
|
||||
protected function logic(Request $request): JsonResponse {
|
||||
return $this->response($this->cressAuthenticationProcessor->execute($request));
|
||||
return $this->response($this->crossAuthenticationProcessor->execute($request));
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user