Skip to content

Commit c02a9fe

Browse files
committed
Fix if condition follow psr
1 parent f38f991 commit c02a9fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Uecode/Bundle/ApiKeyBundle/Security/Authentication/Provider/ApiKeyProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function authenticate(TokenInterface $token)
4545
}
4646
} else {
4747
$result = $this->doAuth($this->userProvider, $token);
48-
if($result !== false) {
48+
if ($result !== false) {
4949
return $result;
5050
}
5151
}

0 commit comments

Comments
 (0)