Conditions | 2 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
20 | public function __toString(): string |
||
21 | { |
||
22 | $home = \dirname($this->bin); |
||
23 | $tmp = '/tmp/'.\md5($this->alias); |
||
24 | |||
25 | return \sprintf( |
||
26 | 'phive --no-progress --home %s install %s %s -t %s && mv %s/* %s', |
||
27 | $home, |
||
28 | $this->sig ? '--trust-gpg-keys '.$this->sig : '--force-accept-unsigned', |
||
29 | $this->alias, |
||
30 | $tmp, |
||
31 | $tmp, |
||
32 | $this->bin |
||
33 | ); |
||
36 |