| 1 | <?php |
||
| 7 | class BundleNotFoundException extends \RuntimeException |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @param string $bundle |
||
| 11 | * @param BundleInterface[] $bundles |
||
| 12 | * @param int $code |
||
| 13 | * @param \Throwable|null $previous |
||
| 14 | * |
||
| 15 | * @return static |
||
| 16 | */ |
||
| 17 | public static function create(string $bundle, array $bundles, int $code = 0, \Throwable $previous = null) |
||
| 29 | } |
||
| 30 |