Passed
Push — master ( 652acd...8b321d )
by Mostafa
13:28 queued 10:29
created
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.