| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public static function create(string $bundle, array $bundles, int $code = 0, Throwable $previous = null) |
||
| 28 | { |
||
| 29 | return new static( |
||
| 30 | sprintf( |
||
| 31 | 'The bundle "%s" was not found. Bundles available are: ["%s"].', |
||
| 32 | $bundle, |
||
| 33 | implode('", "', array_keys($bundles)) |
||
| 34 | ), |
||
| 35 | $code, |
||
| 36 | $previous |
||
| 37 | ); |
||
| 38 | } |
||
| 39 | } |
||
| 40 |