Passed
Push — main ( cdb07c...2e8a21 )
by Sílvio
01:03 queued 16s
created
tests/Unit/FileTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -258,13 +258,13 @@  discard block
 block discarded – undo
258 258
     {
259 259
         $this->cache->flushCache();
260 260
 
261
-        $value = $this->cache->remember('remember_test_key', 60, function () {
261
+        $value = $this->cache->remember('remember_test_key', 60, function() {
262 262
             return 'valor_teste';
263 263
         });
264 264
 
265 265
         $this->assertEquals('valor_teste', $value);
266 266
 
267
-        $cachedValue = $this->cache->remember('remember_test_key', 60, function (){
267
+        $cachedValue = $this->cache->remember('remember_test_key', 60, function() {
268 268
             return 'novo_valor';
269 269
         });
270 270
 
@@ -276,12 +276,12 @@  discard block
 block discarded – undo
276 276
     {
277 277
         $this->cache->flushCache();
278 278
 
279
-        $value = $this->cache->rememberForever('remember_forever_key', function () {
279
+        $value = $this->cache->rememberForever('remember_forever_key', function() {
280 280
             return 'valor_eterno';
281 281
         });
282 282
         $this->assertEquals('valor_eterno', $value);
283 283
 
284
-        $cachedValue = $this->cache->rememberForever('remember_forever_key', function () {
284
+        $cachedValue = $this->cache->rememberForever('remember_forever_key', function() {
285 285
             return 'novo_valor';
286 286
         });
287 287
 
Please login to merge, or discard this patch.
tests/Unit/DatabaseTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -232,13 +232,13 @@  discard block
 block discarded – undo
232 232
 
233 233
     public function test_remember_saves_and_recover_values()
234 234
     {
235
-        $value = $this->cache->remember('remember_test_key', 60, function () {
235
+        $value = $this->cache->remember('remember_test_key', 60, function() {
236 236
             return 'valor_teste';
237 237
         });
238 238
 
239 239
         $this->assertEquals('valor_teste', $value);
240 240
 
241
-        $cachedValue = $this->cache->remember('remember_test_key', 60, function (){
241
+        $cachedValue = $this->cache->remember('remember_test_key', 60, function() {
242 242
             return 'novo_valor';
243 243
         });
244 244
 
@@ -249,12 +249,12 @@  discard block
 block discarded – undo
249 249
     public function test_remember_forever_saves_value_indefinitely()
250 250
     {
251 251
 
252
-        $value = $this->cache->rememberForever('remember_forever_key', function () {
252
+        $value = $this->cache->rememberForever('remember_forever_key', function() {
253 253
             return 'valor_eterno';
254 254
         });
255 255
         $this->assertEquals('valor_eterno', $value);
256 256
 
257
-        $cachedValue = $this->cache->rememberForever('remember_forever_key', function () {
257
+        $cachedValue = $this->cache->rememberForever('remember_forever_key', function() {
258 258
             return 'novo_valor';
259 259
         });
260 260
 
Please login to merge, or discard this patch.
src/CacheStore/FileCacheStore.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      * @param string|int $ttl
73 73
      * @return string
74 74
      */
75
-    public function getCache(string $cacheKey, string $namespace = '', string|int $ttl = 3600)
75
+    public function getCache(string $cacheKey, string $namespace = '', string | int $ttl = 3600)
76 76
     {
77 77
        
78 78
         $ttl = CacheFileHelper::ttl($ttl, $this->defaultTTL);
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      * @param string|int $ttl
97 97
      * @return void
98 98
      */
99
-    public function putCache(string $cacheKey, mixed $cacheData, string $namespace = '', string|int $ttl = 3600)
99
+    public function putCache(string $cacheKey, mixed $cacheData, string $namespace = '', string | int $ttl = 3600)
100 100
     {
101 101
         $cacheFile = $this->buildCacheFilePath($cacheKey, $namespace);
102 102
         $data = $this->fileManager->serialize($cacheData);
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
      * @param string $namespace
172 172
      * @return void
173 173
      */
174
-    public function renewCache(string $cacheKey, string|int $ttl, string $namespace = '')
174
+    public function renewCache(string $cacheKey, string | int $ttl, string $namespace = '')
175 175
     {
176 176
         $cacheData = $this->getCache($cacheKey, $namespace);
177 177
         if ($cacheData) {
@@ -278,12 +278,12 @@  discard block
 block discarded – undo
278 278
     {
279 279
         $flushAfterSeconds = CacheFileHelper::convertExpirationToSeconds($flushAfter);
280 280
 
281
-        if(!$this->fileManager->fileExists($this->lastFlushTimeFile)) {
281
+        if (!$this->fileManager->fileExists($this->lastFlushTimeFile)) {
282 282
             $this->fileManager->writeFile($this->lastFlushTimeFile, time());
283 283
             return;
284 284
         }
285 285
 
286
-        $lastFlushTime = (int) $this->fileManager->readFile($this->lastFlushTimeFile);
286
+        $lastFlushTime = (int)$this->fileManager->readFile($this->lastFlushTimeFile);
287 287
 
288 288
         if ((time() - $lastFlushTime) >= $flushAfterSeconds) {
289 289
             $this->flushCache();
Please login to merge, or discard this patch.
src/Cacheer.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      * @param string|int $ttl
56 56
      * @return CacheDataFormatter|mixed
57 57
      */
58
-    public function getCache(string $cacheKey, string $namespace = '', string|int $ttl = 3600)
58
+    public function getCache(string $cacheKey, string $namespace = '', string | int $ttl = 3600)
59 59
     {
60 60
         $cacheData = $this->cacheStore->getCache($cacheKey, $namespace, $ttl);
61 61
         $this->setMessage($this->cacheStore->getMessage(), $this->cacheStore->isSuccess());
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      * @param string|int $ttl
70 70
      * @return void
71 71
      */
72
-    public function putCache(string $cacheKey, mixed $cacheData, string $namespace = '', string|int $ttl = 3600)
72
+    public function putCache(string $cacheKey, mixed $cacheData, string $namespace = '', string | int $ttl = 3600)
73 73
     {
74 74
         $this->cacheStore->putCache($cacheKey, $cacheData, $namespace, $ttl);
75 75
         $this->setMessage($this->cacheStore->getMessage(), $this->cacheStore->isSuccess());
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      * @param string $namespace
116 116
      * @return mixed
117 117
      */
118
-    public function renewCache(string $cacheKey, string|int $ttl = 3600, string $namespace = '')
118
+    public function renewCache(string $cacheKey, string | int $ttl = 3600, string $namespace = '')
119 119
     {
120 120
         $renewedCache = $this->cacheStore->renewCache($cacheKey, $ttl, $namespace);
121 121
 
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
     {
139 139
         $cacheData = $this->getCache($cacheKey, $namespace);
140 140
 
141
-        if(!empty($cacheData) && is_numeric($cacheData)) {
141
+        if (!empty($cacheData) && is_numeric($cacheData)) {
142 142
             $this->putCache($cacheKey, (int)($cacheData + $amount), $namespace);
143 143
             $this->setMessage($this->getMessage(), $this->isSuccess());
144 144
             return true;
@@ -174,12 +174,12 @@  discard block
 block discarded – undo
174 174
     * @param Closure $callback
175 175
     * @return mixed
176 176
     */
177
-    public function remember(string $cacheKey, int|string $ttl, Closure $callback)
177
+    public function remember(string $cacheKey, int | string $ttl, Closure $callback)
178 178
     {
179 179
         $isCache = $this->getCache($cacheKey);
180 180
 
181 181
 
182
-        if(!empty($isCache)) {
182
+        if (!empty($isCache)) {
183 183
             return $this->getCache($cacheKey, ttl: $ttl);
184 184
         }
185 185
 
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     * @param int|string $ttl
225 225
     * @return bool
226 226
     */
227
-    public function add(string $cacheKey, mixed $cacheData, string $namespace = '', int|string $ttl = 3600)
227
+    public function add(string $cacheKey, mixed $cacheData, string $namespace = '', int | string $ttl = 3600)
228 228
     {
229 229
         if (!empty($this->getCache($cacheKey, $namespace))) {
230 230
             return true;
Please login to merge, or discard this patch.
src/Repositories/CacheDatabaseRepository.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,10 +29,10 @@  discard block
 block discarded – undo
29 29
      * @param string|int $ttl
30 30
      * @return bool
31 31
      */
32
-    public function store(string $cacheKey, mixed $cacheData, string $namespace, string|int $ttl = 3600)
32
+    public function store(string $cacheKey, mixed $cacheData, string $namespace, string | int $ttl = 3600)
33 33
     {
34 34
 
35
-        if(!empty($this->retrieve($cacheKey, $namespace))) {
35
+        if (!empty($this->retrieve($cacheKey, $namespace))) {
36 36
             $this->update($cacheKey, $cacheData, $namespace);
37 37
         }
38 38
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     * @param string $namespace
116 116
     * @return bool
117 117
     */
118
-    public function renew(string $cacheKey, string|int $ttl, string $namespace = '')
118
+    public function renew(string $cacheKey, string | int $ttl, string $namespace = '')
119 119
     {
120 120
         $currentTime = date('Y-m-d H:i:s');
121 121
 
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
                 SET expirationTime = DATE_ADD(expirationTime, INTERVAL ? SECOND)
136 136
                 WHERE cacheKey = ? AND cacheNamespace = ? AND expirationTime > ?"
137 137
             );
138
-            $stmt->bindValue(1, (int) $ttl, PDO::PARAM_INT);
138
+            $stmt->bindValue(1, (int)$ttl, PDO::PARAM_INT);
139 139
             $stmt->bindValue(2, $cacheKey);
140 140
             $stmt->bindValue(3, $namespace);
141 141
             $stmt->bindValue(4, $currentTime);
Please login to merge, or discard this patch.
tests/Unit/RedisTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -258,13 +258,13 @@  discard block
 block discarded – undo
258 258
     {
259 259
         $this->cache->flushCache();
260 260
 
261
-        $value = $this->cache->remember('remember_test_key', 60, function () {
261
+        $value = $this->cache->remember('remember_test_key', 60, function() {
262 262
             return 'valor_teste';
263 263
         });
264 264
 
265 265
         $this->assertEquals('valor_teste', $value);
266 266
 
267
-        $cachedValue = $this->cache->remember('remember_test_key', 60, function (){
267
+        $cachedValue = $this->cache->remember('remember_test_key', 60, function() {
268 268
             return 'novo_valor';
269 269
         });
270 270
 
@@ -276,12 +276,12 @@  discard block
 block discarded – undo
276 276
     {
277 277
         $this->cache->flushCache();
278 278
 
279
-        $value = $this->cache->rememberForever('remember_forever_key', function () {
279
+        $value = $this->cache->rememberForever('remember_forever_key', function() {
280 280
             return 'valor_eterno';
281 281
         });
282 282
         $this->assertEquals('valor_eterno', $value);
283 283
 
284
-        $cachedValue = $this->cache->rememberForever('remember_forever_key', function () {
284
+        $cachedValue = $this->cache->rememberForever('remember_forever_key', function() {
285 285
             return 'novo_valor';
286 286
         });
287 287
 
Please login to merge, or discard this patch.