Passed
Push — master ( 3317fd...38d44b )
by Nicolaas
03:15
created
src/Extensions/DataObjectExtension.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,9 +18,9 @@  discard block
 block discarded – undo
18 18
         // NB.
19 19
         // if the dataobject has the versioned extension then the cache should be invalidated onAfterPublish
20 20
         // hasStages function is part of the Versioned class so safe to check here
21
-        if (! $owner->hasExtension(Versioned::class)) {
21
+        if (!$owner->hasExtension(Versioned::class)) {
22 22
             $this->doUpdateCache($className);
23
-        } elseif (! $owner->hasStages()) {
23
+        } elseif (!$owner->hasStages()) {
24 24
             $this->doUpdateCache($className);
25 25
         }
26 26
     }
@@ -87,6 +87,6 @@  discard block
 block discarded – undo
87 87
     {
88 88
         $excludedClasses = Config::inst()->get(self::class, 'excluded_classes');
89 89
 
90
-        return ! in_array($className, $excludedClasses, true);
90
+        return !in_array($className, $excludedClasses, true);
91 91
     }
92 92
 }
Please login to merge, or discard this patch.
src/Extensions/PageControllerExtension.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
             self::$_can_cache_content_string = '';
29 29
             if ($this->owner->hasMethod('canCachePage')) {
30 30
                 self::$_can_cache_content_string = $this->owner->canCachePage() ? '' : 'can-no-cache-' . $this->owner->ID;
31
-                if (! $this->canCacheCheck()) {
31
+                if (!$this->canCacheCheck()) {
32 32
                     return false;
33 33
                 }
34 34
             }
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
             $action = $this->owner->request->param('Action');
38 38
             if ($action) {
39 39
                 self::$_can_cache_content_string .= $action;
40
-                if (! $this->canCacheCheck()) {
40
+                if (!$this->canCacheCheck()) {
41 41
                     return false;
42 42
                 }
43 43
             }
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
             // id
47 47
             if ($id) {
48 48
                 self::$_can_cache_content_string .= $id;
49
-                if (! $this->canCacheCheck()) {
49
+                if (!$this->canCacheCheck()) {
50 50
                     return false;
51 51
                 }
52 52
             }
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
                         self::$_can_cache_content_string .= $item;
62 62
                     }
63 63
 
64
-                    if (! $this->canCacheCheck()) {
64
+                    if (!$this->canCacheCheck()) {
65 65
                         return false;
66 66
                     }
67 67
                 }
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
             $member = Security::getCurrentUser();
72 72
             if ($member && $member->exists()) {
73 73
                 self::$_can_cache_content_string .= $member->ID;
74
-                if (! $this->canCacheCheck()) {
74
+                if (!$this->canCacheCheck()) {
75 75
                     return false;
76 76
                 }
77 77
             }
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
     public function CacheKeyGenerator($letter, $includePageId = true): string
132 132
     {
133 133
         if ($this->HasCacheKeys()) {
134
-            $string = $letter . '_' .$this->cacheKeyAnyDataObjectChanges();
134
+            $string = $letter . '_' . $this->cacheKeyAnyDataObjectChanges();
135 135
 
136 136
             if ($includePageId) {
137 137
                 $string .= '_ID_' . $this->owner->ID;
Please login to merge, or discard this patch.
src/Extensions/SimpleTemplateCachingSiteConfigExtension.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     public function updateCMSFields(FieldList $fields)
31 31
     {
32 32
         $name = '';
33
-        if(class_exists($this->getOwner()->ClassNameLastEdited)) {
33
+        if (class_exists($this->getOwner()->ClassNameLastEdited)) {
34 34
             $name = Injector::inst()->get($this->getOwner()->ClassNameLastEdited)->i18n_singular_name();
35 35
         }
36 36
         $fields->addFieldsToTab(
@@ -41,10 +41,10 @@  discard block
 block discarded – undo
41 41
                 DatetimeField::create('CacheKeyLastEdited', 'Content Last Edited')
42 42
                     ->setRightTitle('The frontend template cache will be invalidated every time this value changes. It changes every time anything is changed in the database.'),
43 43
                 ReadonlyField::create('ClassNameLastEdited', 'Last class updated')
44
-                    ->setRightTitle('Last object updated. The name of this object is: '.$name),
44
+                    ->setRightTitle('Last object updated. The name of this object is: ' . $name),
45 45
             ]
46 46
         );
47
-        if($this->getOwner()->RecordCacheUpdates) {
47
+        if ($this->getOwner()->RecordCacheUpdates) {
48 48
             $fields->addFieldsToTab(
49 49
                 'Root.Caching',
50 50
                 [
@@ -62,28 +62,28 @@  discard block
 block discarded – undo
62 62
     public static function site_cache_key(): string
63 63
     {
64 64
         $obj = SiteConfig::current_site_config();
65
-        if($obj->HasCaching) {
66
-            return (string) 'ts_'.strtotime($obj->CacheKeyLastEdited);
65
+        if ($obj->HasCaching) {
66
+            return (string) 'ts_' . strtotime($obj->CacheKeyLastEdited);
67 67
         } else {
68
-            return  (string) 'ts_'.time();
68
+            return  (string) 'ts_' . time();
69 69
         }
70 70
     }
71 71
 
72 72
     public static function update_cache_key(?string $className = '')
73 73
     {
74 74
         $obj = SiteConfig::current_site_config();
75
-        if($obj->HasCaching) {
75
+        if ($obj->HasCaching) {
76 76
             DB::query('
77 77
                 UPDATE "SiteConfig"
78 78
                 SET
79 79
                     "CacheKeyLastEdited" = \'' . DBDatetime::now()->Rfc2822() . '\',
80
-                    "ClassNameLastEdited" = \'' . addslashes($className). '\'
81
-                WHERE ID = '.$obj->ID.'
80
+                    "ClassNameLastEdited" = \'' . addslashes($className) . '\'
81
+                WHERE ID = '.$obj->ID . '
82 82
             ;');
83 83
         }
84
-        if($obj->RecordCacheUpdates) {
84
+        if ($obj->RecordCacheUpdates) {
85 85
             $record = Injector::inst()
86
-                ->create(ObjectsUpdated::class, ['ClassNameLastEdited' => $className])
86
+                ->create(ObjectsUpdated::class, [ 'ClassNameLastEdited' => $className ])
87 87
                 ->write();
88 88
         }
89 89
     }
Please login to merge, or discard this patch.
src/Model/ObjectsUpdated.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 
63 63
     public function getClassNameTitle() : string
64 64
     {
65
-        if(class_exists($this->getOwner()->ClassNameLastEdited)) {
65
+        if (class_exists($this->getOwner()->ClassNameLastEdited)) {
66 66
             return Injector::inst()->get($this->getOwner()->ClassNameLastEdited)->i18n_singular_name();
67 67
         }
68 68
         return 'class not found';
Please login to merge, or discard this patch.