Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
k0ka authored and github-actions[bot] committed Jan 31, 2024
1 parent 66ac91f commit e2471b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Common/Auth/AuthHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit e2471b2

Please sign in to comment.