From 25517fe43db6969ce0962f2d5528b9a23e15f0c9 Mon Sep 17 00:00:00 2001 From: Brent Shaffer Date: Wed, 17 Jan 2024 15:34:40 -0800 Subject: [PATCH] fix cs --- src/Credentials/ExternalAccountCredentials.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Credentials/ExternalAccountCredentials.php b/src/Credentials/ExternalAccountCredentials.php index 3f495354a..200cd8366 100644 --- a/src/Credentials/ExternalAccountCredentials.php +++ b/src/Credentials/ExternalAccountCredentials.php @@ -322,7 +322,7 @@ private function getProjectNumber(): ?string private function isWorkforcePool(): bool { - $regex = '#//iam\.googleapis\.com/locations/[^/]+/workforcePools/#'; - return preg_match($regex, $this->auth->getAudience()) === 1; + $regex = '#//iam\.googleapis\.com/locations/[^/]+/workforcePools/#'; + return preg_match($regex, $this->auth->getAudience()) === 1; } }