@@ -161,7 +161,9 @@ discard block |
||
161 | 161 | */ |
162 | 162 | public function parsePageViews ($pageViewFolders) |
163 | 163 | { |
164 | - if (empty($pageViewFolders)) { return; } |
|
164 | + if (empty($pageViewFolders)) |
|
165 | + { |
|
166 | +return; } |
|
165 | 167 | |
166 | 168 | /** |
167 | 169 | * The name of the folder where PageViews are located |
@@ -343,7 +345,9 @@ discard block |
||
343 | 345 | */ |
344 | 346 | private function handleTrackableStaticPageView ($pageView) |
345 | 347 | { |
346 | - if (empty($pageView['title'])) { return; } |
|
348 | + if (empty($pageView['title'])) |
|
349 | + { |
|
350 | +return; } |
|
347 | 351 | |
348 | 352 | $this->addToSiteMenu($pageView); |
349 | 353 | $this->flatPages[$pageView['title']] = $pageView->createJail(); |
@@ -611,7 +615,9 @@ discard block |
||
611 | 615 | */ |
612 | 616 | private function trackParentTwigTemplate ($template, &$pageView) |
613 | 617 | { |
614 | - if (!$this->tracking) { return; } |
|
618 | + if (!$this->tracking) |
|
619 | + { |
|
620 | +return; } |
|
615 | 621 | |
616 | 622 | /** @var Twig_Template $parent */ |
617 | 623 | $parent = $template->getParent(array()); |
@@ -80,7 +80,7 @@ |
||
80 | 80 | */ |
81 | 81 | protected $tracking; |
82 | 82 | |
83 | - public function __construct() |
|
83 | + public function __construct () |
|
84 | 84 | { |
85 | 85 | parent::__construct(); |
86 | 86 |