From 5fa2077f0287386152283842d468a6bebb7c2929 Mon Sep 17 00:00:00 2001 From: Kevin Pfeifer Date: Tue, 5 Sep 2023 22:24:33 +0200 Subject: [PATCH] fix cs --- src/Identity.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Identity.php b/src/Identity.php index 999307ef..35f60e44 100644 --- a/src/Identity.php +++ b/src/Identity.php @@ -49,9 +49,9 @@ public function __construct(AuthorizationServiceInterface $service, AuthenIdenti /** * Get the primary key/id field for the identity. * - * @return string|int|null|array + * @return array|string|int|null */ - public function getIdentifier(): string|int|null|array + public function getIdentifier(): string|int|array|null { return $this->identity->getIdentifier(); }