Passed
Push — master ( 92208f...ad3fad )
by Nicolaas
10:26
created
src/Extensions/ControllerExtension.php 1 patch
Spacing   +4 added lines, -4 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()) {
@@ -28,20 +28,20 @@  discard block
 block discarded – undo
28 28
             if (empty($dataRecord)) {
29 29
                 return;
30 30
             }
31
-            if($dataRecord->NeverCachePublicly) {
31
+            if ($dataRecord->NeverCachePublicly) {
32 32
                 HTTPCacheControlMiddleware::singleton()
33 33
                     ->disableCache()
34 34
                 ;
35 35
                 return;
36 36
             }
37
-            if($dataRecord->PublicCacheDurationInSeconds === -1 || $dataRecord->PublicCacheDurationInSeconds === 0) {
37
+            if ($dataRecord->PublicCacheDurationInSeconds === -1 || $dataRecord->PublicCacheDurationInSeconds === 0) {
38 38
                 HTTPCacheControlMiddleware::singleton()
39 39
                     ->disableCache()
40 40
                 ;
41 41
                 return;
42 42
             }
43 43
             $sc = SiteConfig::current_site_config();
44
-            if($sc->HasCaching) {
44
+            if ($sc->HasCaching) {
45 45
                 $cacheTime = $dataRecord->PublicCacheDurationInSecond ?: $sc->PublicCacheDurationInSeconds;
46 46
                 HTTPCacheControlMiddleware::singleton()
47 47
                     ->enableCache()
Please login to merge, or discard this patch.
src/Extensions/PageExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
                 ),
36 36
             ]
37 37
         );
38
-        if((bool) $this->getOwner()->NeverCachePublicly !== true) {
38
+        if ((bool) $this->getOwner()->NeverCachePublicly !== true) {
39 39
             $fields->addFieldsToTab(
40 40
                 'Root.Cache',
41 41
                 [
Please login to merge, or discard this patch.
src/Extensions/SimpleTemplateCachingSiteConfigExtension.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     public static function update_cache_key(?string $className = '')
88 88
     {
89 89
         // important - avoid endless loop!
90
-        if(SiteConfig::get()->exists()) {
90
+        if (SiteConfig::get()->exists()) {
91 91
             $howOldIsIt = DB::query('SELECT Created FROM SiteConfig LIMIT 1')->value();
92 92
             if ($howOldIsIt && strtotime((string) $howOldIsIt) > strtotime('-5 minutes')) {
93 93
                 return;
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
         }
113 113
         if ($obj && $obj->RecordCacheUpdates) {
114 114
             $recordId = Injector::inst()
115
-                ->create(ObjectsUpdated::class, ['ClassNameLastEdited' => $className])
115
+                ->create(ObjectsUpdated::class, [ 'ClassNameLastEdited' => $className ])
116 116
                 ->write()
117 117
             ;
118 118
             DB::query('DELETE FROM ObjectsUpdated WHERE ID < ' . (int) ($recordId - self::MAX_OBJECTS_UPDATED));
@@ -121,9 +121,9 @@  discard block
 block discarded – undo
121 121
 
122 122
     public function requireDefaultRecords()
123 123
     {
124
-        if((int) SiteConfig::get()->count() > 100) {
124
+        if ((int) SiteConfig::get()->count() > 100) {
125 125
             $currentSiteConfig = SiteConfig::current_site_config();
126
-            if($currentSiteConfig) {
126
+            if ($currentSiteConfig) {
127 127
                 DB::alteration_message('Deleting all SiteConfig records except for the current one.', 'deleted');
128 128
                 DB::query('DELETE FROM "SiteConfig" WHERE ID <> ' . $currentSiteConfig->ID);
129 129
             }
Please login to merge, or discard this patch.