Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | public function __construct(array $searchPaths) |
||
25 | { |
||
26 | parent::__construct( |
||
27 | 'Composer auto-loader not found.', |
||
28 | sprintf( |
||
29 | 'The composer auto-loader could not be found in any of the possible paths:'.PHP_EOL. |
||
30 | '%s', |
||
31 | '- '.implode(PHP_EOL.'- ', $searchPaths) |
||
32 | ), |
||
33 | self::ERROR_CODE |
||
34 | ); |
||
37 |