Skip to content

Commit f15cebe

Browse files
committed
Ran php-cs-fixer
1 parent 9708028 commit f15cebe

13 files changed

+34
-13
lines changed

src/Dockerfile/Copy.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66

77
final readonly class Copy implements LayerInterface, \Stringable
88
{
9-
public function __construct(private string $source, private string $destination) {}
9+
public function __construct(private string $source, private string $destination)
10+
{
11+
}
1012

1113
/** @return \Iterator|self[] */
1214
public static function directory(string $sourcePath, string $destinationPath): \Iterator

src/Dockerfile/From.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66

77
final readonly class From implements LayerInterface, \Stringable
88
{
9-
public function __construct(private string $source) {}
9+
public function __construct(private string $source)
10+
{
11+
}
1012

1113
public function __toString(): string
1214
{

src/Dockerfile/Label.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66

77
final readonly class Label implements LayerInterface, \Stringable
88
{
9-
public function __construct(private string $key, private string $value) {}
9+
public function __construct(private string $key, private string $value)
10+
{
11+
}
1012

1113
public function __toString(): string
1214
{

src/Dockerfile/Maintainer.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66

77
final readonly class Maintainer implements LayerInterface, \Stringable
88
{
9-
public function __construct(private string $name, private string $email) {}
9+
public function __construct(private string $name, private string $email)
10+
{
11+
}
1012

1113
public function __toString(): string
1214
{

src/Dockerfile/Run.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66

77
final readonly class Run implements LayerInterface, \Stringable
88
{
9-
public function __construct(private string $command) {}
9+
public function __construct(private string $command)
10+
{
11+
}
1012

1113
public function __toString(): string
1214
{

src/Dockerfile/Workdir.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66

77
final readonly class Workdir implements LayerInterface, \Stringable
88
{
9-
public function __construct(private string $path) {}
9+
public function __construct(private string $path)
10+
{
11+
}
1012

1113
public function __toString(): string
1214
{

src/PHP/ComposerAddComposerRepository.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
public function __construct(
1212
private string $name,
1313
private string $url
14-
) {}
14+
) {
15+
}
1516

1617
public function __toString(): string
1718
{

src/PHP/ComposerAddGithubRepository.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
public function __construct(
1212
private string $name,
1313
private string $url
14-
) {}
14+
) {
15+
}
1516

1617
public function __toString(): string
1718
{

src/PHP/ComposerAddVcsRepository.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
public function __construct(
1212
private string $name,
1313
private string $url
14-
) {}
14+
) {
15+
}
1516

1617
public function __toString(): string
1718
{

src/PHP/ComposerAuthenticationToken.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
public function __construct(
1212
private string $url,
1313
private string $token,
14-
) {}
14+
) {
15+
}
1516

1617
public function __toString(): string
1718
{

0 commit comments

Comments
 (0)