Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | public static function make(array $commands, string $input, string $output, File $file, ?Disk $disk = null, ?LoggerInterface $logger = null, int $timeout = 900): self |
||
25 | { |
||
26 | $id = Str::orderedUuid()->toString(); |
||
27 | |||
28 | return new self($id, $commands, $input, $output, $file, $disk, $logger, $timeout); |
||
29 | } |
||
31 |