Passed
Push — master ( 5e6d7b...38474e )
by Nicolaas
04:20 queued 17s
created
src/Extensions/ControllerExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         }
34 34
 
35 35
         $sc = SiteConfig::current_site_config();
36
-        if (! $sc->HasCaching) {
36
+        if (!$sc->HasCaching) {
37 37
             return null;
38 38
         }
39 39
         /** PageController|ControllerExtension $owner */
Please login to merge, or discard this patch.
src/Extensions/PageControllerExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
             if ($owner->hasMethod('canCachePage')) {
51 51
                 // if it can cache the page, then it the cache string will remain empty.
52 52
                 $canCache = $owner->canCachePage();
53
-                self::$_can_cache_content_string .=  $canCache ? '' : $this->getRandomKey();
53
+                self::$_can_cache_content_string .= $canCache ? '' : $this->getRandomKey();
54 54
             }
55 55
 
56 56
             //action
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             $requestVars = $owner->request->requestVars();
76 76
             if ($requestVars) {
77 77
                 foreach ($owner->request->requestVars() as $key => $item) {
78
-<<<<<<< HEAD
78
+<< << <<< HEAD
79 79
                     $canCache = false;
80 80
 =======
81 81
 >>>>>>> 5e6d7b8a22bfca77ec46593a5063fa14ef3c3e64
Please login to merge, or discard this patch.