| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 44 | protected static function fixDependenciesFor55() |
||
| 45 | { |
||
| 46 | $fs = new Filesystem(); |
||
| 47 | $status = 0; |
||
| 48 | |||
| 49 | $fs->remove('composer.lock'); |
||
| 50 | |||
| 51 | // Composer has already read our composer.json file, so we will |
||
| 52 | // need to run in a new process to fix things up. |
||
| 53 | passthru('composer install --ansi', $status); |
||
| 54 | |||
| 55 | // Don't continue with the initial 'composer install' command |
||
| 56 | exit($status); |
||
| 57 | } |
||
| 58 | } |
||
| 59 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.