| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 33 | 19 | public function execute(): bool |
|
| 34 | { |
||
| 35 | 19 | $options = $this->getOptions(); |
|
| 36 | 19 | $command = $options['console'] . ' cache:pool:prune --env=' . $options['env'] . ' ' . $options['flags']; |
|
| 37 | |||
| 38 | /** @var Process $process */ |
||
| 39 | 19 | $process = $this->runtime->runCommand(trim($command)); |
|
| 40 | |||
| 41 | 19 | return $process->isSuccessful(); |
|
| 42 | } |
||
| 44 |