Skip to content

Commit e3e773e

Browse files
committed
Ran php-cs-fixer
1 parent c3d2271 commit e3e773e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/Dockerfile.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ final class Dockerfile implements \IteratorAggregate, \Countable, FileInterface,
1212
/** @var iterable|Dockerfile\LayerInterface[] */
1313
private iterable $layers;
1414

15-
public function __construct(null|Dockerfile\LayerInterface ...$layers)
15+
public function __construct(null|LayerInterface ...$layers)
1616
{
1717
$this->layers = $layers;
1818
}
1919

20-
public function push(Dockerfile\LayerInterface ...$layers): void
20+
public function push(LayerInterface ...$layers): void
2121
{
2222
array_push($this->layers, ...$layers);
2323
}

src/PHP/ComposerConfig.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
public function __construct(
1212
private string $host,
1313
private string $token,
14-
)
15-
{
14+
) {
1615
}
1716

1817
public function __toString(): string

0 commit comments

Comments
 (0)