From e3e773ec413ca5bf762fb98f85df0a2de07ce91f Mon Sep 17 00:00:00 2001 From: sebprt Date: Fri, 26 Jan 2024 09:37:51 +0100 Subject: [PATCH] Ran php-cs-fixer --- src/Dockerfile.php | 4 ++-- src/PHP/ComposerConfig.php | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Dockerfile.php b/src/Dockerfile.php index 6b7b786..6308ad4 100644 --- a/src/Dockerfile.php +++ b/src/Dockerfile.php @@ -12,12 +12,12 @@ final class Dockerfile implements \IteratorAggregate, \Countable, FileInterface, /** @var iterable|Dockerfile\LayerInterface[] */ private iterable $layers; - public function __construct(null|Dockerfile\LayerInterface ...$layers) + public function __construct(null|LayerInterface ...$layers) { $this->layers = $layers; } - public function push(Dockerfile\LayerInterface ...$layers): void + public function push(LayerInterface ...$layers): void { array_push($this->layers, ...$layers); } diff --git a/src/PHP/ComposerConfig.php b/src/PHP/ComposerConfig.php index 6b077bf..d835195 100644 --- a/src/PHP/ComposerConfig.php +++ b/src/PHP/ComposerConfig.php @@ -11,8 +11,7 @@ public function __construct( private string $host, private string $token, - ) - { + ) { } public function __toString(): string