Skip to content

Commit cfd0221

Browse files
authored
Upgrade CI tools versions (#1098)
* Upgrade php-cs-fixer to 3.1.0 * Upgrade psalm to 4.10.0 * Upgrade phpstan to 0.12.98 * Fiix psalm
1 parent 29137d2 commit cfd0221

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Credentials/ContainerProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function getCredentials(Configuration $configuration): ?Credentials
5151
$this->logger->info('Failed to decode Credentials.', ['exception' => $e]);
5252

5353
return null;
54-
} catch (TransportExceptionInterface | HttpExceptionInterface $e) {
54+
} catch (TransportExceptionInterface|HttpExceptionInterface $e) {
5555
$this->logger->info('Failed to fetch Profile from Instance Metadata.', ['exception' => $e]);
5656

5757
return null;

src/Credentials/InstanceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function getCredentials(Configuration $configuration): ?Credentials
6060
$this->logger->info('Failed to decode Credentials.', ['exception' => $e]);
6161

6262
return null;
63-
} catch (TransportExceptionInterface | HttpExceptionInterface $e) {
63+
} catch (TransportExceptionInterface|HttpExceptionInterface $e) {
6464
$this->logger->info('Failed to fetch Profile from Instance Metadata.', ['exception' => $e]);
6565

6666
return null;

0 commit comments

Comments
 (0)