Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
37 | public function runActualTask($params = []): ?string |
||
38 | { |
||
39 | $this->mu()->setBreakOnAllErrors(true); |
||
|
|||
40 | $command = ' |
||
41 | composer install ;'.$this->composerOptions; |
||
42 | $this->mu()->execMe( |
||
43 | $this->mu()->getGitRootDir(), |
||
44 | $command, |
||
45 | 'Basic composer install', |
||
46 | false |
||
47 | ); |
||
48 | |||
49 | $this->mu()->setBreakOnAllErrors(false); |
||
50 | return null; |
||
51 | } |
||
59 |