Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | public function executeBeforeFirstTest(): void |
||
12 | { |
||
13 | $command = sprintf( |
||
14 | '%s && %s', |
||
15 | $this->cwdToEnvironment(), |
||
16 | '[ -d vendor ] && composer dump || composer upd -n --prefer-dist --no-progress --no-suggest --ignore-platform-reqs ' . $this->suppressLogs(), |
||
17 | ); |
||
18 | $this->exec($command); |
||
19 | } |
||
45 |