Loading core/modules/system/src/PathBasedBreadcrumbBuilder.php +1 −13 Original line number Diff line number Diff line Loading @@ -226,19 +226,7 @@ protected function getRequestForPath($path, array $exclude) { $request->attributes->add($this->router->matchRequest($request)); return $request; } catch (ParamNotConvertedException $e) { return NULL; } catch (ResourceNotFoundException $e) { return NULL; } catch (MethodNotAllowedException $e) { return NULL; } catch (AccessDeniedHttpException $e) { return NULL; } catch (NotFoundHttpException $e) { catch (ParamNotConvertedException | ResourceNotFoundException | MethodNotAllowedException | AccessDeniedHttpException | NotFoundHttpException $e) { return NULL; } } Loading Loading
core/modules/system/src/PathBasedBreadcrumbBuilder.php +1 −13 Original line number Diff line number Diff line Loading @@ -226,19 +226,7 @@ protected function getRequestForPath($path, array $exclude) { $request->attributes->add($this->router->matchRequest($request)); return $request; } catch (ParamNotConvertedException $e) { return NULL; } catch (ResourceNotFoundException $e) { return NULL; } catch (MethodNotAllowedException $e) { return NULL; } catch (AccessDeniedHttpException $e) { return NULL; } catch (NotFoundHttpException $e) { catch (ParamNotConvertedException | ResourceNotFoundException | MethodNotAllowedException | AccessDeniedHttpException | NotFoundHttpException $e) { return NULL; } } Loading