@@ -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 |
@@ -23,15 +23,15 @@ |
||
23 | 23 | } |
24 | 24 | |
25 | 25 | foreach ($rules as $key => $rule) { |
26 | - $translationrules['trans.' . $locale . '.'.$key] = $rule; |
|
26 | + $translationrules['trans.'.$locale.'.'.$key] = $rule; |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | foreach ($attributes as $key => $attribute) { |
30 | - $translationattributes['trans.' . $locale . '.'.$key] = $attribute; |
|
30 | + $translationattributes['trans.'.$locale.'.'.$key] = $attribute; |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | foreach ($messages as $key => $message) { |
34 | - $translationmessages['trans.' . $locale . '.'.$key] = $message; |
|
34 | + $translationmessages['trans.'.$locale.'.'.$key] = $message; |
|
35 | 35 | } |
36 | 36 | } |
37 | 37 |
@@ -11,7 +11,7 @@ |
||
11 | 11 | if (PreviewMode::fromRequest()->check()) { |
12 | 12 | Session::now('note.default', 'U bekijkt een preview.'); |
13 | 13 | return true; |
14 | - } else { |
|
14 | + }else { |
|
15 | 15 | return false; |
16 | 16 | } |
17 | 17 | } |
@@ -19,7 +19,7 @@ |
||
19 | 19 | */ |
20 | 20 | public static function reorderAgainstSiblings(array $sequence) |
21 | 21 | { |
22 | - array_walk($sequence, function ($id, $i) { |
|
22 | + array_walk($sequence, function($id, $i) { |
|
23 | 23 | self::findOrFail($id)->reorder($i); |
24 | 24 | }); |
25 | 25 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Thinktomorrow\Chief\Concerns\HasPeriod; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Thinktomorrow\Chief\Concerns\Archivable; |
6 | 6 |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | public function onlyModules(): Collection |
35 | 35 | { |
36 | - return $this->collection()->reject(function ($item) { |
|
36 | + return $this->collection()->reject(function($item) { |
|
37 | 37 | if ($item instanceof Page || $item instanceof StoredSetReference) { |
38 | 38 | return true; |
39 | 39 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | public function onlyPages(): Collection |
44 | 44 | { |
45 | - return $this->collection()->filter(function ($item) { |
|
45 | + return $this->collection()->filter(function($item) { |
|
46 | 46 | if ($item instanceof Page) { |
47 | 47 | return true; |
48 | 48 | } |
@@ -72,12 +72,12 @@ discard block |
||
72 | 72 | |
73 | 73 | // Merging the results of all the pages and all the modules, then filter by the config |
74 | 74 | // This prevents us from having duplicates and also reduces the query load. |
75 | - $collection = $collection->filter(function ($page) use ($available_children_types) { |
|
75 | + $collection = $collection->filter(function($page) use ($available_children_types) { |
|
76 | 76 | return in_array(get_class($page), $available_children_types); |
77 | 77 | }); |
78 | 78 | |
79 | 79 | // Filter out our already loaded pages and modules |
80 | - $remaining_children_types = collect($available_children_types)->reject(function ($type) { |
|
80 | + $remaining_children_types = collect($available_children_types)->reject(function($type) { |
|
81 | 81 | return (new $type() instanceof Page || new $type() instanceof Module); |
82 | 82 | }); |
83 | 83 | |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | $collection = collect(array_merge($collection->all(), (new $type())->all()->all())); |
89 | 89 | } |
90 | 90 | // Filter out our parent |
91 | - return $this->collection = $collection->reject(function ($item) { |
|
91 | + return $this->collection = $collection->reject(function($item) { |
|
92 | 92 | if ($item instanceof $this->parent) { |
93 | 93 | return $item->id == $this->parent->id; |
94 | 94 | } |
@@ -103,7 +103,7 @@ |
||
103 | 103 | { |
104 | 104 | $relations = static::where(function ($query) use ($type, $id) { |
105 | 105 | return $query->where('parent_type', $type) |
106 | - ->where('parent_id', $id); |
|
106 | + ->where('parent_id', $id); |
|
107 | 107 | })->orWhere(function ($query) use ($type, $id) { |
108 | 108 | return $query->where('child_type', $type) |
109 | 109 | ->where('child_id', $id); |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | ->orderBy('sort', 'ASC') |
52 | 52 | ->get(); |
53 | 53 | |
54 | - return $relations->map(function (Relation $relation) { |
|
54 | + return $relations->map(function(Relation $relation) { |
|
55 | 55 | $parent = $relation->parent; |
56 | 56 | $parent->relation = $relation; |
57 | 57 | return $parent; |
@@ -65,14 +65,14 @@ discard block |
||
65 | 65 | ->orderBy('sort', 'ASC') |
66 | 66 | ->get(); |
67 | 67 | |
68 | - return $relations->map(function (Relation $relation) use ($parent_type, $parent_id) { |
|
68 | + return $relations->map(function(Relation $relation) use ($parent_type, $parent_id) { |
|
69 | 69 | |
70 | 70 | // It could be that the child itself is soft-deleted, if this is the case, we will ignore it and move on. |
71 | 71 | if (!$child = $relation->child) { |
72 | 72 | if (!$relation->child()->withTrashed()->first()) { |
73 | 73 | // if ((!method_exists($childInstance, 'trashed')) || ! $childInstance->onlyTrashed()->find($relation->child_id)) { |
74 | 74 | // If we cannot retrieve it then he collection type is possibly off, this is a database inconsistency and should be addressed |
75 | - throw new \DomainException('Corrupt relation reference. Related child ['.$relation->child_type.'@'.$relation->child_id.'] could not be retrieved for parent [' . $parent_type.'@'.$parent_id.']. Make sure the morph key can resolve to a valid class.'); |
|
75 | + throw new \DomainException('Corrupt relation reference. Related child ['.$relation->child_type.'@'.$relation->child_id.'] could not be retrieved for parent ['.$parent_type.'@'.$parent_id.']. Make sure the morph key can resolve to a valid class.'); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | return null; |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | }) |
85 | 85 | |
86 | 86 | // In case of soft-deleted entries, this will be null and should be ignored. We make sure that keys are reset in case of removed child |
87 | - ->reject(function ($child) { |
|
87 | + ->reject(function($child) { |
|
88 | 88 | return is_null($child); |
89 | 89 | }) |
90 | 90 | ->values(); |
@@ -101,10 +101,10 @@ discard block |
||
101 | 101 | |
102 | 102 | public static function deleteRelationsOf($type, $id) |
103 | 103 | { |
104 | - $relations = static::where(function ($query) use ($type, $id) { |
|
104 | + $relations = static::where(function($query) use ($type, $id) { |
|
105 | 105 | return $query->where('parent_type', $type) |
106 | 106 | ->where('parent_id', $id); |
107 | - })->orWhere(function ($query) use ($type, $id) { |
|
107 | + })->orWhere(function($query) use ($type, $id) { |
|
108 | 108 | return $query->where('child_type', $type) |
109 | 109 | ->where('child_id', $id); |
110 | 110 | })->get(); |