From e2471b23ce8b1243a067bd028c80dd3c218dd6d5 Mon Sep 17 00:00:00 2001 From: k0ka Date: Wed, 31 Jan 2024 22:41:32 +0000 Subject: [PATCH] Apply php-cs-fixer changes --- src/Common/Auth/AuthHandler.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Common/Auth/AuthHandler.php b/src/Common/Auth/AuthHandler.php index 48739d10..71a58721 100644 --- a/src/Common/Auth/AuthHandler.php +++ b/src/Common/Auth/AuthHandler.php @@ -43,12 +43,12 @@ public function __invoke(RequestInterface $request, array $options) { $fn = $this->nextHandler; - if (!isset($options['openstack.skip_auth'])){ + if (!isset($options['openstack.skip_auth'])) { // Deprecated. Left for backward compatibility only. if ($this->shouldIgnore($request)) { return $fn($request, $options); } - } else if ($options['openstack.skip_auth']) { + } elseif ($options['openstack.skip_auth']) { return $fn($request, $options); }