Skip to content

Commit

Permalink
Fixing indentation style
Browse files Browse the repository at this point in the history
  • Loading branch information
kedarkhaire committed Jan 8, 2024
1 parent 21e626f commit dcebb26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Api/Management/Entity/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public function setCallbackUrl(string $callbackUrl): void
public function getCredentials(): array
{
usort($this->credentials, function (AppCredentialInterface $a, AppCredentialInterface $b) {
return $b->getIssuedAt()->getTimestamp() <=> $a->getIssuedAt()->getTimestamp();
return $b->getIssuedAt()->getTimestamp() <=> $a->getIssuedAt()->getTimestamp();
});
return $this->credentials;
}
Expand Down

0 comments on commit dcebb26

Please sign in to comment.