Completed
Push — master ( 0af16c...507aa8 )
by Vladimir
02:26
created
src/Manager/PageManager.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -161,7 +161,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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());
Please login to merge, or discard this patch.
src/Manager/TrackingManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
      */
81 81
     protected $tracking;
82 82
 
83
-    public function __construct()
83
+    public function __construct ()
84 84
     {
85 85
         parent::__construct();
86 86
 
Please login to merge, or discard this patch.