@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | { |
40 | 40 | // Constraints |
41 | 41 | if (!isset($values['action'])) { |
42 | - throw new \InvalidArgumentException('Set reference array is missing required values for the "action" keys. Given: ' . print_r($values, true)); |
|
42 | + throw new \InvalidArgumentException('Set reference array is missing required values for the "action" keys. Given: '.print_r($values, true)); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | return new static( |
@@ -54,14 +54,14 @@ discard block |
||
54 | 54 | { |
55 | 55 | $sets = config('thinktomorrow.chief.sets', []); |
56 | 56 | |
57 | - return collect($sets)->map(function ($set, $key) { |
|
57 | + return collect($sets)->map(function($set, $key) { |
|
58 | 58 | return SetReference::fromArray($key, $set); |
59 | 59 | }); |
60 | 60 | } |
61 | 61 | |
62 | 62 | public static function find($key): ?SetReference |
63 | 63 | { |
64 | - return static::all()->filter(function ($ref) use ($key) { |
|
64 | + return static::all()->filter(function($ref) use ($key) { |
|
65 | 65 | return $ref->key() == $key; |
66 | 66 | })->first(); |
67 | 67 | } |
@@ -78,13 +78,13 @@ discard block |
||
78 | 78 | |
79 | 79 | $this->validateAction($class, $method); |
80 | 80 | |
81 | - $result = call_user_func_array([app($class),$method], $this->parameters($class, $method, $parent)); |
|
81 | + $result = call_user_func_array([app($class), $method], $this->parameters($class, $method, $parent)); |
|
82 | 82 | |
83 | - if (! $result instanceof Set && $result instanceof Collection) { |
|
83 | + if (!$result instanceof Set && $result instanceof Collection) { |
|
84 | 84 | return new Set($result->all(), $this->key); |
85 | 85 | } |
86 | 86 | |
87 | - if (! $result instanceof Set && $result instanceof Paginator) { |
|
87 | + if (!$result instanceof Set && $result instanceof Paginator) { |
|
88 | 88 | return new Set($result->all(), $this->key, [ |
89 | 89 | 'paginate' => [ |
90 | 90 | 'total' => $result->total(), |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | |
153 | 153 | private static function validateAction($class, $method) |
154 | 154 | { |
155 | - if (! class_exists($class)) { |
|
155 | + if (!class_exists($class)) { |
|
156 | 156 | throw new \InvalidArgumentException('The class ['.$class.'] isn\'t a valid class reference or does not exist in the chief-settings.sets config entry.'); |
157 | 157 | } |
158 | 158 |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | */ |
40 | 40 | public static function onlineModels(bool $onlySingles = false, Model $ignoredModel = null): Collection |
41 | 41 | { |
42 | - $models = chiefMemoize('all-online-models', function () use ($onlySingles) { |
|
42 | + $models = chiefMemoize('all-online-models', function() use ($onlySingles) { |
|
43 | 43 | $builder = UrlRecord::whereNull('redirect_id') |
44 | 44 | ->select('model_type', 'model_id') |
45 | 45 | ->groupBy('model_type', 'model_id'); |
@@ -48,17 +48,17 @@ discard block |
||
48 | 48 | $builder->where('model_type', 'singles'); |
49 | 49 | } |
50 | 50 | |
51 | - return $builder->get()->mapToGroups(function ($record) { |
|
51 | + return $builder->get()->mapToGroups(function($record) { |
|
52 | 52 | return [$record->model_type => $record->model_id]; |
53 | - })->map(function ($record, $key) { |
|
53 | + })->map(function($record, $key) { |
|
54 | 54 | return Morphables::instance($key)->find($record->toArray()); |
55 | - })->map->reject(function ($model) { |
|
55 | + })->map->reject(function($model) { |
|
56 | 56 | return is_null($model) || !$model->isPublished(); // Invalid references to archived or removed models where url record still exists. |
57 | 57 | })->flatten(); |
58 | 58 | }, [$onlySingles]); |
59 | 59 | |
60 | 60 | if ($ignoredModel) { |
61 | - $models = $models->reject(function ($model) use ($ignoredModel) { |
|
61 | + $models = $models->reject(function($model) use ($ignoredModel) { |
|
62 | 62 | return (get_class($model) === get_class($ignoredModel) && $model->id === $ignoredModel->id); |
63 | 63 | }); |
64 | 64 | } |