| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | public function runActualTask($params = []): ?string |
||
| 34 | { |
||
| 35 | $this->mu()->setBreakOnAllErrors(true); |
||
|
|
|||
| 36 | $command = 'composer install ' . $this->composerOptions; |
||
| 37 | $this->mu()->execMe( |
||
| 38 | $this->mu()->getGitRootDir(), |
||
| 39 | $command, |
||
| 40 | 'Basic composer install', |
||
| 41 | false |
||
| 42 | ); |
||
| 43 | |||
| 44 | $this->mu()->setBreakOnAllErrors(false); |
||
| 45 | return null; |
||
| 46 | } |
||
| 53 |