Skip to content

Commit 4bff98f

Browse files
committed
Merge pull request #6 from L0rD59/RemovePHP54Requirements
remove PHP5.4 syntax
2 parents 5257a98 + 17be079 commit 4bff98f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function loadUserByApiKey($apiKey)
2424
{
2525
$this->stateless = true;
2626

27-
return $this->userManager->findUserBy(['apiKey' => $apiKey]);
27+
return $this->userManager->findUserBy(array('apiKey' => $apiKey));
2828
}
2929

3030
/**

0 commit comments

Comments
 (0)