Skip to content

Commit c4ff732

Browse files
committed
Remove unused import
1 parent f187c7d commit c4ff732

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/php/xp/lambda/Docker.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php namespace xp\lambda;
22

33
use io\Path;
4-
use lang\{Process, CommandLine};
4+
use lang\CommandLine;
55

66
trait Docker {
77
private $command= null;
@@ -49,7 +49,7 @@ private function resolve($commands) {
4949

5050
/** Returns docker runtime */
5151
private function command() {
52-
return $this->command ?? $this->command= CommandLine::forName(PHP_OS)->compose($this->resolve(['docker', 'podman']), []);
52+
return $this->command ?? $this->command= CommandLine::forName(PHP_OS)->compose($this->resolve(['docker', 'podman']));
5353
}
5454

5555
/** Returns a given docker image, building it if necessary */

0 commit comments

Comments
 (0)