Skip to content

Commit a24a342

Browse files
committed
fixed phpcs issue
1 parent 2a3e831 commit a24a342

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/User/src/Controller/UserController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function loginAction(): ResponseInterface
7777
/** @var AuthenticationAdapter $adapter */
7878
$adapter = $this->authenticationService->getAdapter();
7979
/** @var array $data */
80-
$data = $form->getData();
80+
$data = $form->getData();
8181
$adapter->setIdentity($data['identity'])->setCredential($data['password']);
8282
$authResult = $this->authenticationService->authenticate();
8383
if ($authResult->isValid()) {

0 commit comments

Comments
 (0)