Passed
Push — master ( ad3fad...fe986e )
by Nicolaas
10:10
created
src/Extensions/ControllerExtension.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 {
17 17
     public function onBeforeInit()
18 18
     {
19
-        if(Security::getCurrentUser()) {
19
+        if (Security::getCurrentUser()) {
20 20
             return;
21 21
         }
22 22
         if (Versioned::LIVE !== Versioned::get_stage()) {
@@ -26,42 +26,42 @@  discard block
 block discarded – undo
26 26
         $owner = $this->getOwner();
27 27
         if ($owner instanceof ContentController) {
28 28
             $extend = $owner->extend('updateCacheControl');
29
-            if($extend) {
29
+            if ($extend) {
30 30
                 return;
31 31
             }
32
-            if($owner->param('Action')) {
32
+            if ($owner->param('Action')) {
33 33
                 return;
34 34
             }
35
-            if($owner->param('ID')) {
35
+            if ($owner->param('ID')) {
36 36
                 return;
37 37
             }
38
-            if($owner->request->isAjax()) {
38
+            if ($owner->request->isAjax()) {
39 39
                 return;
40 40
             }
41
-            if($owner->request->getVar('flush')) {
41
+            if ($owner->request->getVar('flush')) {
42 42
                 return;
43 43
             }
44
-            if($owner->request->requestVars()) {
44
+            if ($owner->request->requestVars()) {
45 45
                 return;
46 46
             }
47 47
             $dataRecord = $owner->dataRecord;
48 48
             if (empty($dataRecord)) {
49 49
                 return;
50 50
             }
51
-            if($dataRecord->NeverCachePublicly) {
51
+            if ($dataRecord->NeverCachePublicly) {
52 52
                 HTTPCacheControlMiddleware::singleton()
53 53
                     ->disableCache()
54 54
                 ;
55 55
                 return;
56 56
             }
57
-            if($dataRecord->PublicCacheDurationInSeconds === -1 || $dataRecord->PublicCacheDurationInSeconds === 0) {
57
+            if ($dataRecord->PublicCacheDurationInSeconds === -1 || $dataRecord->PublicCacheDurationInSeconds === 0) {
58 58
                 HTTPCacheControlMiddleware::singleton()
59 59
                     ->disableCache()
60 60
                 ;
61 61
                 return;
62 62
             }
63 63
             $sc = SiteConfig::current_site_config();
64
-            if($sc->HasCaching) {
64
+            if ($sc->HasCaching) {
65 65
                 $cacheTime = $dataRecord->PublicCacheDurationInSecond ?: $sc->PublicCacheDurationInSeconds;
66 66
                 HTTPCacheControlMiddleware::singleton()
67 67
                     ->enableCache()
Please login to merge, or discard this patch.