Conditions | 2 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
20 | 5 | public function __toString(): string |
|
21 | { |
||
22 | 5 | $home = \dirname($this->bin); |
|
23 | |||
24 | 5 | return \sprintf( |
|
25 | 5 | 'echo "y" | phive --home %s install %s %s -t %s', |
|
26 | 5 | $home, |
|
27 | 5 | $this->unsigned ? '--force-accept-unsigned' : '', |
|
28 | 5 | $this->alias, |
|
29 | 5 | $this->bin |
|
30 | ); |
||
33 |