From b2225f2a53fcc29c03374f525136a9c7f4d71174 Mon Sep 17 00:00:00 2001 From: Richard van Laak Date: Tue, 4 Oct 2022 12:00:34 +0200 Subject: [PATCH] fix cs due to PHPCSFixer update --- src/Twig/BreadcrumbTrailExtension.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Twig/BreadcrumbTrailExtension.php b/src/Twig/BreadcrumbTrailExtension.php index 0ccdda3..c9dfa19 100644 --- a/src/Twig/BreadcrumbTrailExtension.php +++ b/src/Twig/BreadcrumbTrailExtension.php @@ -53,8 +53,8 @@ public function getFunctions() public function renderBreadcrumbTrail($template = null) { return $this->templating->render( - null === $template ? $this->trail->getTemplate() : $template, - ['breadcrumbs' => $this->trail] + null === $template ? $this->trail->getTemplate() : $template, + ['breadcrumbs' => $this->trail] ); }