Completed
Pull Request — fix/queing-aggregators (#88)
by Nuno
35:16 queued 30:47
created
Category
src/Settings/Compiler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
         $indexChangedSettings = [];
86 86
         foreach ($settings->changed() as $setting => $value) {
87
-            if (! array_key_exists($setting, $viewParams)) {
87
+            if ( ! array_key_exists($setting, $viewParams)) {
88 88
                 $indexChangedSettings[$setting] = $value;
89 89
             }
90 90
         }
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 
116 116
         array_pop($matches[2]);
117 117
 
118
-        return array_map(function ($match) {
118
+        return array_map(function($match) {
119 119
             return ltrim(explode(' ', $match)[0], '$');
120 120
         }, $matches[2]);
121 121
     }
Please login to merge, or discard this patch.
src/Console/Commands/StatusCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 
63 63
             $status = $synchronizer->analyse($index);
64 64
             $description = $status->toHumanString();
65
-            if (! $status->bothAreEqual()) {
65
+            if ( ! $status->bothAreEqual()) {
66 66
                 $description = "<fg=red>$description</>";
67 67
             } else {
68 68
                 $description = '<fg=green>synchronized</>';
Please login to merge, or discard this patch.
src/Helpers/SearchableFinder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
     {
76 76
         $appNamespace = $this->app->getNamespace();
77 77
 
78
-        return array_values(array_filter($this->getProjectClasses(), function (string $class) use ($appNamespace) {
78
+        return array_values(array_filter($this->getProjectClasses(), function(string $class) use ($appNamespace) {
79 79
             return Str::startsWith($class, $appNamespace) && $this->isSearchableModel($class);
80 80
         }));
81 81
     }
Please login to merge, or discard this patch.
src/Searchable/RecordsCounter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         } else {
38 38
             $softDeletes = in_array(SoftDeletes::class, class_uses_recursive($searchable), true) && config('scout.soft_delete', false);
39 39
 
40
-            $count = $searchable::query()->when($softDeletes, function ($query) {
40
+            $count = $searchable::query()->when($softDeletes, function($query) {
41 41
                 $query->withTrashed();
42 42
             })->count();
43 43
         }
Please login to merge, or discard this patch.
src/Searchable/AggregatorObserver.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     public function setAggregator(string $aggregator, array $models): void
40 40
     {
41 41
         foreach ($models as $model) {
42
-            if (! array_key_exists($model, $this->aggregators)) {
42
+            if ( ! array_key_exists($model, $this->aggregators)) {
43 43
                 $this->aggregators[$model] = [];
44 44
             }
45 45
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     {
55 55
         $class = get_class($model);
56 56
 
57
-        if (! array_key_exists($class, $this->aggregators)) {
57
+        if ( ! array_key_exists($class, $this->aggregators)) {
58 58
             return;
59 59
         }
60 60
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         } else {
78 78
             $class = get_class($model);
79 79
 
80
-            if (! array_key_exists($class, $this->aggregators)) {
80
+            if ( ! array_key_exists($class, $this->aggregators)) {
81 81
                 return;
82 82
             }
83 83
 
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 
102 102
         $class = get_class($model);
103 103
 
104
-        if (! array_key_exists($class, $this->aggregators)) {
104
+        if ( ! array_key_exists($class, $this->aggregators)) {
105 105
             return;
106 106
         }
107 107
 
Please login to merge, or discard this patch.
src/Settings/Settings.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
             }
73 73
         }
74 74
 
75
-        return array_filter($settings, function ($value, $setting) {
75
+        return array_filter($settings, function($value, $setting) {
76 76
             return ! in_array($setting, self::$ignore, true);
77 77
         }, ARRAY_FILTER_USE_BOTH);
78 78
     }
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      */
85 85
     public function changed(): array
86 86
     {
87
-        return array_filter($this->all(), function ($value, $setting) {
87
+        return array_filter($this->all(), function($value, $setting) {
88 88
             return ! array_key_exists($setting, $this->defaults) || $value !== $this->defaults[$setting];
89 89
         }, ARRAY_FILTER_USE_BOTH);
90 90
     }
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
         $viewVariables = Compiler::getViewVariables();
100 100
         $changed = $this->changed();
101 101
 
102
-        $compiled = array_filter($this->all(), function ($value, $setting) use ($viewVariables, $changed) {
102
+        $compiled = array_filter($this->all(), function($value, $setting) use ($viewVariables, $changed) {
103 103
             return in_array($setting, $viewVariables, true) || array_key_exists($setting, $changed);
104 104
         }, ARRAY_FILTER_USE_BOTH);
105 105
 
Please login to merge, or discard this patch.
src/Searchable/ModelsResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
             $modelKey = ObjectIdEncrypter::decryptSearchableKey($id);
45 45
 
46 46
             if (in_array(Searchable::class, class_uses_recursive($model), true)) {
47
-                if (! empty($models = $model->getScoutModelsByIds($builder, [$modelKey]))) {
47
+                if ( ! empty($models = $model->getScoutModelsByIds($builder, [$modelKey]))) {
48 48
                     $instances = $instances->merge($models);
49 49
                 }
50 50
             } else {
Please login to merge, or discard this patch.
src/Jobs/DeleteJob.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
         $index = $client->initIndex($this->searchables->first()->searchableAs());
54 54
 
55 55
         $result = $index->deleteBy([
56
-            'tagFilters' => $this->searchables->map(function ($searchable) {
56
+            'tagFilters' => $this->searchables->map(function($searchable) {
57 57
                 return ObjectIdEncrypter::encrypt($searchable);
58 58
             })->toArray(),
59 59
         ]);
Please login to merge, or discard this patch.
src/Settings/LocalFactory.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -261,8 +261,7 @@
 block discarded – undo
261 261
                 throw tap(new ModelNotFoundException())->setModel($searchable);
262 262
             }
263 263
 
264
-            $attributes = method_exists($instance, 'toSearchableArray') ? $instance->toSearchableArray() :
265
-                $instance->toArray();
264
+            $attributes = method_exists($instance, 'toSearchableArray') ? $instance->toSearchableArray() : $instance->toArray();
266 265
         }
267 266
 
268 267
         return $attributes;
Please login to merge, or discard this patch.