Passed
Pull Request — master (#17)
by Mostafa
02:33
created
src/LaraCacheServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     {
18 18
         $this->mergeConfigFrom(__DIR__ . '/../config/config.php', 'laracache');
19 19
 
20
-        $this->app->bind('laracache', function () {
20
+        $this->app->bind('laracache', function() {
21 21
             return new LaraCache;
22 22
         });
23 23
     }
Please login to merge, or discard this patch.
src/LaraCache.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,8 +30,7 @@  discard block
 block discarded – undo
30 30
     {
31 31
         if ($model) {
32 32
             $model::cache()->updateAll();
33
-        }
34
-        else {
33
+        } else {
35 34
             $list = self::list();
36 35
 
37 36
             /** @var mixed $model */
@@ -64,8 +63,7 @@  discard block
 block discarded – undo
64 63
     {
65 64
         if ($model) {
66 65
             $model::cache()->deleteAll($forever);
67
-        }
68
-        else {
66
+        } else {
69 67
             $list = self::list();
70 68
 
71 69
             /** @var mixed $model */
Please login to merge, or discard this patch.
src/Traits/InteractsWithCache.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -78,12 +78,10 @@
 block discarded – undo
78 78
                 if (!in_array($name, $list[$this->model])) {
79 79
                     $list[$this->model][] = $name;
80 80
                 }
81
-            }
82
-            else {
81
+            } else {
83 82
                 $list[$this->model] = [$name];
84 83
             }
85
-        }
86
-        else {
84
+        } else {
87 85
             $list = [
88 86
                 $this->model => [$name]
89 87
             ];
Please login to merge, or discard this patch.
src/Cache.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,8 +62,7 @@
 block discarded – undo
62 62
                 if ($entity->isQueueable) {
63 63
                     $this->initCache($entity, $entity->getTtl());
64 64
                     RefreshCache::dispatch($this->model, $entity->name, $event);
65
-                }
66
-                else {
65
+                } else {
67 66
                     $this->updateCacheEntity($entity->name, $event, $entity);
68 67
                 }
69 68
             }
Please login to merge, or discard this patch.
src/Actions/DeleteCacheAction.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,7 @@
 block discarded – undo
13 13
             foreach ($data->models as $model) {
14 14
                 $this->deleteAll($model);
15 15
             }
16
-        }
17
-        else {
16
+        } else {
18 17
             $model = $data->models[0];
19 18
 
20 19
             empty($data->entities)
Please login to merge, or discard this patch.
src/Actions/Support/UpdateDeleteCache.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,8 +49,7 @@  discard block
 block discarded – undo
49 49
             }
50 50
 
51 51
             return $data;
52
-        }
53
-        else {
52
+        } else {
54 53
             throw CacheGroupValueIsNotValid::make($groupName);
55 54
         }
56 55
     }
@@ -62,8 +61,7 @@  discard block
 block discarded – undo
62 61
                 models: [$item['model']],
63 62
                 entities: $item['entities']
64 63
             );
65
-        }
66
-        else {
64
+        } else {
67 65
             throw CacheGroupValueIsNotValid::make($groupName);
68 66
         }
69 67
     }
Please login to merge, or discard this patch.
src/Actions/UpdateCacheAction.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,7 @@
 block discarded – undo
13 13
             foreach ($data->models as $model) {
14 14
                 $this->updateAll($model);
15 15
             }
16
-        }
17
-        else {
16
+        } else {
18 17
             $model = $data->models[0];
19 18
 
20 19
             empty($data->entities)
Please login to merge, or discard this patch.
src/Utils/CacheEnum.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,14 +4,14 @@
 block discarded – undo
4 4
 
5 5
 abstract class CacheEnum
6 6
 {
7
-    public function __construct(protected int|string $value) {}
7
+    public function __construct(protected int | string $value) {}
8 8
 
9 9
     public static function __callStatic(string $name, array $arguments): self
10 10
     {
11 11
         return new static($name);
12 12
     }
13 13
 
14
-    public function getValue(): int|string
14
+    public function getValue(): int | string
15 15
     {
16 16
         return $this->value;
17 17
     }
Please login to merge, or discard this patch.