Passed
Pull Request — master (#6)
by Бабичев
26:29
created
src/VacuumServiceProvider.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
     public function boot(): void
19 19
     {
20
-        if (! $this->app->runningInConsole()) {
20
+        if (!$this->app->runningInConsole()) {
21 21
             return;
22 22
         }
23 23
 
Please login to merge, or discard this patch.
src/Store.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
         $key = app(StoreService::class)
62 62
             ->getCacheKey($object);
63 63
 
64
-        if (! $this->taggedCache()->has($key)) {
64
+        if (!$this->taggedCache()->has($key)) {
65 65
             $this->setBalance($object, $this->getBalance($object));
66 66
         }
67 67
 
Please login to merge, or discard this patch.