| 1 | <?php |
||
| 17 | class BundleNotFoundException extends \RuntimeException |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @param string $bundle |
||
| 21 | * @param BundleInterface[] $bundles |
||
| 22 | * @param int $code |
||
| 23 | * @param Throwable|null $previous |
||
| 24 | * |
||
| 25 | * @return static |
||
| 26 | */ |
||
| 27 | public static function create(string $bundle, array $bundles, int $code = 0, Throwable $previous = null) |
||
| 39 | } |
||
| 40 |