@@ -15,7 +15,7 @@ |
||
15 | 15 | |
16 | 16 | public function apply($value = null): Closure |
17 | 17 | { |
18 | - return $this->query && $this->query instanceof Closure ? $this->query : function ($query) { |
|
18 | + return $this->query && $this->query instanceof Closure ? $this->query : function($query) { |
|
19 | 19 | return $query; |
20 | 20 | }; |
21 | 21 | } |
@@ -6,8 +6,8 @@ discard block |
||
6 | 6 | |
7 | 7 | class FilterType |
8 | 8 | { |
9 | - const INPUT = 'input'; // oneliner text (input) |
|
10 | - const SELECT = 'select'; // Select options |
|
9 | + const INPUT = 'input'; // oneliner text (input) |
|
10 | + const SELECT = 'select'; // Select options |
|
11 | 11 | |
12 | 12 | /** |
13 | 13 | * @var string |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | static::INPUT, |
21 | 21 | static::SELECT, |
22 | 22 | ])) { |
23 | - throw new \Exception('Invalid type identifier given [' . $type . '].'); |
|
23 | + throw new \Exception('Invalid type identifier given ['.$type.'].'); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | $this->type = $type; |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | |
29 | 29 | public static function fromString(string $type) |
30 | 30 | { |
31 | - $class = 'Thinktomorrow\Chief\Filters\Types\\' . ucfirst($type . 'Filter'); |
|
31 | + $class = 'Thinktomorrow\Chief\Filters\Types\\'.ucfirst($type.'Filter'); |
|
32 | 32 | |
33 | 33 | return new $class(new static($type)); |
34 | 34 | } |
@@ -64,7 +64,7 @@ |
||
64 | 64 | |
65 | 65 | public function __toString() |
66 | 66 | { |
67 | - return (string) $this->get('key'); |
|
67 | + return (string)$this->get('key'); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
@@ -46,14 +46,14 @@ discard block |
||
46 | 46 | */ |
47 | 47 | public function filter(callable $callback): self |
48 | 48 | { |
49 | - if (! is_callable($callback)) { |
|
49 | + if (!is_callable($callback)) { |
|
50 | 50 | return new static($this->registrations); |
51 | 51 | } |
52 | 52 | |
53 | 53 | $registrations = $this->registrations; |
54 | 54 | |
55 | 55 | foreach ($registrations as $k => $registration) { |
56 | - if (!! call_user_func($callback, $registration)) { |
|
56 | + if (!!call_user_func($callback, $registration)) { |
|
57 | 57 | unset($registrations[$k]); |
58 | 58 | } |
59 | 59 | } |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | public function filterByTag($tag): self |
80 | 80 | { |
81 | 81 | try { |
82 | - return $this->filterBy('tags', (array) $tag); |
|
82 | + return $this->filterBy('tags', (array)$tag); |
|
83 | 83 | } catch (NonRegisteredManager $e) { |
84 | 84 | return new static(); |
85 | 85 | } |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | foreach ($registrations as $k => $registration) { |
108 | 108 | $containsValue = $registration->has($key, $value); |
109 | 109 | |
110 | - if ($type == 'filter' && ! $containsValue) { |
|
110 | + if ($type == 'filter' && !$containsValue) { |
|
111 | 111 | unset($registrations[$k]); |
112 | 112 | } |
113 | 113 | |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | private function registrationMustExistConstraint(string $key, $value, $registrations): void |
137 | 137 | { |
138 | 138 | if (empty($registrations) && count($registrations) != $this->registrations) { |
139 | - throw new NonRegisteredManager('No manager found for ' . $key . ' [' . print_r($value, true) . ']. Did you perhaps forgot to register the manager?'); |
|
139 | + throw new NonRegisteredManager('No manager found for '.$key.' ['.print_r($value, true).']. Did you perhaps forgot to register the manager?'); |
|
140 | 140 | } |
141 | 141 | } |
142 | 142 | } |
@@ -47,7 +47,7 @@ |
||
47 | 47 | |
48 | 48 | private function validateTabs(array $tabs) |
49 | 49 | { |
50 | - array_map(function (FieldsTab $tab) { |
|
50 | + array_map(function(FieldsTab $tab) { |
|
51 | 51 | }, $tabs); |
52 | 52 | } |
53 | 53 |
@@ -16,7 +16,7 @@ |
||
16 | 16 | } |
17 | 17 | |
18 | 18 | if (!class_exists($class)) { |
19 | - throw new NotFoundMorphKey('No class found by morphkey [' . $class . ']. Make sure that the morphkey is a valid class reference.'); |
|
19 | + throw new NotFoundMorphKey('No class found by morphkey ['.$class.']. Make sure that the morphkey is a valid class reference.'); |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | return new $class($attributes); |
@@ -32,7 +32,7 @@ |
||
32 | 32 | public function scopeMorphable($query, string $morphkey = null) |
33 | 33 | { |
34 | 34 | return $query->withoutGlobalScope(static::globalMorphableScope()) |
35 | - ->where('morph_key', '=', $morphkey); |
|
35 | + ->where('morph_key', '=', $morphkey); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | private function convertToMorphInstance(Model $model, string $morphKey): Model |
46 | 46 | { |
47 | 47 | // Here we load up the proper collection model instead of the generic base class. |
48 | - return tap(Morphables::instance($morphKey, $model->attributes), function ($instance) use ($model) { |
|
48 | + return tap(Morphables::instance($morphKey, $model->attributes), function($instance) use ($model) { |
|
49 | 49 | $instance->setRawAttributes($model->attributes); |
50 | 50 | $instance->setRelations($model->relations); |
51 | 51 | $instance->exists = $model->exists; |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | if ($this->requiresCustomTranslation($instance)) { |
67 | 67 | if (!is_array($instance->with) || !in_array('translations', $instance->with)) { |
68 | 68 | $instance->unsetRelation('translations'); |
69 | - } else { |
|
69 | + }else { |
|
70 | 70 | // TODO: this is a heavy queryload since it loads new translations for each model... |
71 | 71 | // Removing this could reduce load by approx. 50%. |
72 | 72 | // $instance->load('translations'); |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | $available_locales = static::availableLocales(); |
147 | 147 | $current_locales = $this->translations->pluck('locale')->toArray(); |
148 | 148 | |
149 | - return array_filter($available_locales, function ($v) use ($current_locales, $available) { |
|
149 | + return array_filter($available_locales, function($v) use ($current_locales, $available) { |
|
150 | 150 | return $available ? in_array($v, $current_locales) : !in_array($v, $current_locales); |
151 | 151 | }, ARRAY_FILTER_USE_BOTH); |
152 | 152 | } |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | private function validateLocale($locale) |
160 | 160 | { |
161 | 161 | if (!in_array($locale, static::availableLocales())) { |
162 | - throw new InvalidArgumentException('Locale [' . $locale . '] is not available'); |
|
162 | + throw new InvalidArgumentException('Locale ['.$locale.'] is not available'); |
|
163 | 163 | } |
164 | 164 | } |
165 | 165 |