Skip to content

Commit

Permalink
Ran php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
sebprt committed Jan 10, 2024
1 parent edb4548 commit a0cefc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Adapter/Docker/Satellite.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function build(
$command = ['docker', 'build', '--rm', '-', ...iterator_to_array($iterator($this->imageTags))];

$process = new Process(
implode (' ', array_map(fn ($part) => escapeshellarg((string) $part), $command)),
implode (' ', array_map(fn ($part) => escapeshellarg($part), $command)),
$this->workdir,
);

Expand Down

0 comments on commit a0cefc1

Please sign in to comment.