Passed
Push — master ( da7d9b...0d9e84 )
by Petr
07:09 queued 05:00
created
php-src/Cache/Dual.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 
51 51
     public function get(): string
52 52
     {
53
-        return $this->exists() ? $this->storageCache->get() : '' ;
53
+        return $this->exists() ? $this->storageCache->get() : '';
54 54
     }
55 55
 
56 56
     public function clear(): void
Please login to merge, or discard this patch.
php-src/Cache/Semaphore.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
 
61 61
     public function get(): string
62 62
     {
63
-        return $this->exists() ? $this->cache->get() : '' ;
63
+        return $this->exists() ? $this->cache->get() : '';
64 64
     }
65 65
 
66 66
     public function clear(): void
Please login to merge, or discard this patch.
php-src/Files/Dual.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
             $this->cachePath = array_merge(
46 46
                 $arr->getArrayDirectory(),
47 47
                 [$arr->getFileName() . ICache::EXT_CACHE]
48
-            );;
48
+            ); ;
49 49
             $this->reloadPath = array_merge(
50 50
                 $arr->getArrayDirectory(),
51 51
                 [$arr->getFileName() . ICache::EXT_RELOAD]
Please login to merge, or discard this patch.