Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
15 | 12 | public function __construct(string $repository, string $phar, string $bin, string $workDir, ?string $version = null) |
|
16 | { |
||
17 | 12 | $this->repository = $repository; |
|
18 | 12 | $this->phar = $phar; |
|
19 | 12 | $this->bin = $bin; |
|
20 | 12 | $this->workDir = $workDir; |
|
21 | 12 | $this->version = $version; |
|
22 | } |
||
46 |