Skip to content
Snippets Groups Projects
Verified Commit 41d193f7 authored by Lee Rowlands's avatar Lee Rowlands
Browse files

Issue #3416798 by GafgarionMorua, arunkumark, larowlan, smustgrave,...

Issue #3416798 by GafgarionMorua, arunkumark, larowlan, smustgrave, DamienMcKenna: Refactor the breadcrumb generation "catch" code

(cherry picked from commit 54f3e98a)
parent df9a2fa3
No related branches found
No related tags found
9 merge requests!8376Drupal views: adding more granularity to the ‘use ajax’ functionality,!8300Issue #3443586 View area displays even when parent view has no results.,!7567Issue #3153723 by quietone, Hardik_Patel_12: Change the scaffolding...,!7565Issue #3153723 by quietone, Hardik_Patel_12: Change the scaffolding...,!7509Change label "Block description" to "Block type",!7344Issue #3292350 by O'Briat, KlemenDEV, hswong3i, smustgrave, quietone: Update...,!6922Issue #3412959 by quietone, smustgrave, longwave: Fix 12 'un' words,!6848Issue #3417553 by longwave: Remove withConsecutive() in CacheCollectorTest,!6720Revert "Issue #3358581 by pfrenssen, _tarik_, a.dmitriiev, smustgrave:...
Pipeline #95335 passed with warnings
Pipeline: drupal

#95343

    Pipeline: drupal

    #95337

      ...@@ -226,19 +226,7 @@ protected function getRequestForPath($path, array $exclude) { ...@@ -226,19 +226,7 @@ protected function getRequestForPath($path, array $exclude) {
      $request->attributes->add($this->router->matchRequest($request)); $request->attributes->add($this->router->matchRequest($request));
      return $request; return $request;
      } }
      catch (ParamNotConvertedException $e) { catch (ParamNotConvertedException | ResourceNotFoundException | MethodNotAllowedException | AccessDeniedHttpException | NotFoundHttpException $e) {
      return NULL;
      }
      catch (ResourceNotFoundException $e) {
      return NULL;
      }
      catch (MethodNotAllowedException $e) {
      return NULL;
      }
      catch (AccessDeniedHttpException $e) {
      return NULL;
      }
      catch (NotFoundHttpException $e) {
      return NULL; return NULL;
      } }
      } }
      ......
      0% Loading or .
      You are about to add 0 people to the discussion. Proceed with caution.
      Finish editing this message first!
      Please register or to comment