Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public static function create(string $bundle, array $bundles, int $code = 0, \Throwable $previous = null) |
||
18 | { |
||
19 | return new static( |
||
20 | sprintf( |
||
21 | 'The bundle "%s" was not found. Bundles available are: [%s].', |
||
22 | $bundle, |
||
23 | implode('", "', array_keys($bundles)) |
||
24 | ), |
||
25 | $code, |
||
26 | $previous |
||
27 | ); |
||
28 | } |
||
29 | } |
||
30 |