From dcebb26ce9537fbd51c2fb6c5f74876cd1192f5f Mon Sep 17 00:00:00 2001 From: Kedar Khaire Date: Mon, 8 Jan 2024 22:41:53 +0530 Subject: [PATCH] Fixing indentation style --- src/Api/Management/Entity/App.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Api/Management/Entity/App.php b/src/Api/Management/Entity/App.php index 962c1ce5..152288a5 100644 --- a/src/Api/Management/Entity/App.php +++ b/src/Api/Management/Entity/App.php @@ -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; }