Completed
Branch master (2a820b)
by Kyle
04:02
created
src/Page/Component.php 1 patch
Braces   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,10 @@
 block discarded – undo
69 69
         ), $url), EXTR_SKIP);
70 70
         $enforce = (is_string($base)) ? true : false;
71 71
         $page = new static();
72
-        if (isset($testing)) $page->testing = $testing; // ie. $this->testing = $testing
72
+        if (isset($testing)) {
73
+            $page->testing = $testing;
74
+        }
75
+        // ie. $this->testing = $testing
73 76
         $page->request = (is_null($request)) ? Request::createFromGlobals() : $request;
74 77
         if (false === $folder = realpath($dir)) {
75 78
             $folders = array();
Please login to merge, or discard this patch.