Skip to content

Commit 3a75c57

Browse files
committed
Removed obsolete order by condition
1 parent 870e103 commit 3a75c57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Command/ApiKey/ApiKeyHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ private function getApiKeyEntity(SymfonyStyle $io, string $question): ?ApiKey
9393
/** @var array<string, string> $choices */
9494
$choices = [];
9595

96-
foreach ($this->apiKeyResource->find(orderBy: ['token' => 'ASC']) as $apiKey) {
96+
foreach ($this->apiKeyResource->find() as $apiKey) {
9797
$choices[$apiKey->getId()] = sprintf(
9898
'[Token: %s] %s - Roles: %s',
9999
$apiKey->getToken(),

0 commit comments

Comments
 (0)