Skip to content

Commit 23bac27

Browse files
committed
Add a better fix than rector here.
1 parent c171853 commit 23bac27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Adapter/Docker/Satellite.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function build(
7373
$command = ['docker', 'build', '--rm', '-', ...iterator_to_array($iterator($this->imageTags))];
7474

7575
$process = new Process(
76-
implode (' ', array_map(fn ($part) => escapeshellarg($part), $command)),
76+
implode (' ', array_map(fn (string $part) => escapeshellarg($part), $command)),
7777
$this->workdir,
7878
);
7979

0 commit comments

Comments
 (0)