| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | 19 | public function execute(): bool |
|
| 34 | { |
||
| 35 | 19 | $options = $this->getOptions(); |
|
| 36 | 19 | $command = sprintf( |
|
| 37 | '%s assets:install %s --env=%s %s', |
||
| 38 | 19 | $options['console'], |
|
| 39 | 19 | $options['target'], |
|
| 40 | 19 | $options['env'], |
|
| 41 | 19 | $options['flags'] |
|
| 42 | ); |
||
| 43 | |||
| 44 | 19 | $process = $this->runtime->runCommand(trim($command)); |
|
| 45 | |||
| 46 | 19 | return $process->isSuccessful(); |
|
| 47 | } |
||
| 54 |