@@ -119,7 +119,7 @@ discard block |
||
| 119 | 119 | { |
| 120 | 120 | $class = get_class($searchable->getModel()); |
| 121 | 121 | |
| 122 | - if (! array_key_exists($class, $this->splittables)) { |
|
| 122 | + if ( ! array_key_exists($class, $this->splittables)) { |
|
| 123 | 123 | $this->splittables[$class] = false; |
| 124 | 124 | |
| 125 | 125 | foreach ($searchable->toSearchableArray() as $key => $value) { |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | $objects = $temp; |
| 177 | 177 | } |
| 178 | 178 | |
| 179 | - return array_map(function ($object) use ($array) { |
|
| 179 | + return array_map(function($object) use ($array) { |
|
| 180 | 180 | return array_merge($array, $object); |
| 181 | 181 | }, $objects); |
| 182 | 182 | } |
@@ -150,8 +150,7 @@ discard block |
||
| 150 | 150 | throw new ModelNotDefinedInAggregatorException(); |
| 151 | 151 | } |
| 152 | 152 | |
| 153 | - return method_exists($this->model, 'toSearchableArray') ? $this->model->toSearchableArray() : |
|
| 154 | - $this->model->toArray(); |
|
| 153 | + return method_exists($this->model, 'toSearchableArray') ? $this->model->toSearchableArray() : $this->model->toArray(); |
|
| 155 | 154 | } |
| 156 | 155 | |
| 157 | 156 | /** |
@@ -167,10 +166,10 @@ discard block |
||
| 167 | 166 | $softDeletes = |
| 168 | 167 | in_array(SoftDeletes::class, class_uses_recursive($model)) && config('scout.soft_delete', false); |
| 169 | 168 | |
| 170 | - $instance->newQuery()->when($softDeletes, function ($query) { |
|
| 169 | + $instance->newQuery()->when($softDeletes, function($query) { |
|
| 171 | 170 | $query->withTrashed(); |
| 172 | - })->orderBy($instance->getKeyName())->chunk(config('scout.chunk.searchable', 500), function ($models) { |
|
| 173 | - $models = $models->map(function ($model) { |
|
| 171 | + })->orderBy($instance->getKeyName())->chunk(config('scout.chunk.searchable', 500), function($models) { |
|
| 172 | + $models = $models->map(function($model) { |
|
| 174 | 173 | return static::create($model); |
| 175 | 174 | })->filter->shouldBeSearchable(); |
| 176 | 175 | |
@@ -192,7 +191,7 @@ discard block |
||
| 192 | 191 | $softDeletes = |
| 193 | 192 | in_array(SoftDeletes::class, class_uses_recursive($model), true) && config('scout.soft_delete', false); |
| 194 | 193 | |
| 195 | - $count += $model::query()->when($softDeletes, function ($query) { |
|
| 194 | + $count += $model::query()->when($softDeletes, function($query) { |
|
| 196 | 195 | $query->withTrashed(); |
| 197 | 196 | })->count(); |
| 198 | 197 | } |
@@ -41,7 +41,7 @@ |
||
| 41 | 41 | foreach ($searchableFinder->fromCommand($this) as $searchable) { |
| 42 | 42 | $this->call('scout:flush', ['searchable' => $searchable]); |
| 43 | 43 | |
| 44 | - $events->listen(ModelsImported::class, function ($event) use ($searchable) { |
|
| 44 | + $events->listen(ModelsImported::class, function($event) use ($searchable) { |
|
| 45 | 45 | $last = ObjectIdEncrypter::encrypt($event->models->last()); |
| 46 | 46 | |
| 47 | 47 | $this->line('<comment>Imported ['.$searchable.'] models up to ID:</comment> '.$last); |
@@ -110,7 +110,7 @@ |
||
| 110 | 110 | |
| 111 | 111 | $wheres = $this->mutateWheres($builder->wheres); |
| 112 | 112 | |
| 113 | - return collect($wheres)->map(function ($value, $key) use ($operators) { |
|
| 113 | + return collect($wheres)->map(function($value, $key) use ($operators) { |
|
| 114 | 114 | if (ends_with($key, $operators) || starts_with($value, $operators)) { |
| 115 | 115 | return $key.' '.$value; |
| 116 | 116 | } |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | { |
| 44 | 44 | $callback = $this->callback; |
| 45 | 45 | |
| 46 | - $this->callback = function ($algolia, $query, $baseParameters) use ($parameters, $callback) { |
|
| 46 | + $this->callback = function($algolia, $query, $baseParameters) use ($parameters, $callback) { |
|
| 47 | 47 | $parameters = array_merge($parameters, $baseParameters); |
| 48 | 48 | |
| 49 | 49 | if (is_callable($callback)) { |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | { |
| 43 | 43 | $this->aggregator = get_class($this->first()); |
| 44 | 44 | |
| 45 | - $this->items = $this->getSerializedPropertyValue(EloquentCollection::make($this->map(function ($aggregator) { |
|
| 45 | + $this->items = $this->getSerializedPropertyValue(EloquentCollection::make($this->map(function($aggregator) { |
|
| 46 | 46 | return $aggregator->getModel(); |
| 47 | 47 | }))); |
| 48 | 48 | |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | */ |
| 57 | 57 | public function __wakeup() |
| 58 | 58 | { |
| 59 | - $this->items = $this->getRestoredPropertyValue($this->items)->map(function ($model) { |
|
| 59 | + $this->items = $this->getRestoredPropertyValue($this->items)->map(function($model) { |
|
| 60 | 60 | return $this->aggregator::create($model); |
| 61 | 61 | })->toArray(); |
| 62 | 62 | } |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | foreach ($searchableFinder->fromCommand($this) as $searchable) { |
| 47 | 47 | $this->output->text(' |