Passed
Push — dependabot/npm_and_yarn/browse... ( c64c68...e99520 )
by Philippe
28:31
created
src/Management/Managers.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     {
51 51
         $registrations = collect($this->register->filterByTag($tag)->all());
52 52
 
53
-        return $registrations->map(function ($registration) {
53
+        return $registrations->map(function($registration) {
54 54
             return $this->instance($registration);
55 55
         });
56 56
     }
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     {
66 66
         $registrations = collect($this->register->filterByTag($tag)->all());
67 67
 
68
-        return $registrations->map(function ($registration) {
68
+        return $registrations->map(function($registration) {
69 69
             return $this->instance($registration)->details();
70 70
         });
71 71
     }
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
         //return array with group name and values
77 77
         $grouped = [];
78 78
 
79
-        $managers = $managers->map(function (Manager $item) {
79
+        $managers = $managers->map(function(Manager $item) {
80 80
             return [
81 81
                 'id'    => $item->details()->id,
82 82
                 'group' => $item->details()->plural,
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     {
91 91
         $registrations = collect($this->register->all());
92 92
 
93
-        return $registrations->map(function ($registration) {
93
+        return $registrations->map(function($registration) {
94 94
             return $this->instance($registration);
95 95
         });
96 96
     }
Please login to merge, or discard this patch.
src/Management/Registration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
         }
84 84
 
85 85
         $manager = new \ReflectionClass($this->managerClass);
86
-        if (! $manager->implementsInterface(Manager::class)) {
86
+        if (!$manager->implementsInterface(Manager::class)) {
87 87
             throw new \InvalidArgumentException('Class ['.$this->managerClass.'] is expected to implement the ['.Manager::class.'] contract.');
88 88
         }
89 89
     }
Please login to merge, or discard this patch.
src/Management/AbstractManager.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -71,11 +71,11 @@  discard block
 block discarded – undo
71 71
             $this->filters()->apply($builder);
72 72
 
73 73
             $results = $builder->get();
74
-        } else {
74
+        }else {
75 75
             $results = $model::all();
76 76
         }
77 77
 
78
-        return $results->map(function ($model) {
78
+        return $results->map(function($model) {
79 79
             return (new static($this->registration))->manage($model);
80 80
         });
81 81
     }
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      */
94 94
     protected function existingModel()
95 95
     {
96
-        if (!$this->model ||! $this->model->exists) {
96
+        if (!$this->model || !$this->model->exists) {
97 97
             throw new NonExistingRecord('Model does not exist yet but is expected.');
98 98
         }
99 99
 
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 
139 139
     public function guard($verb): Manager
140 140
     {
141
-        if (! $this->can($verb)) {
141
+        if (!$this->can($verb)) {
142 142
             NotAllowedManagerRoute::notAllowedVerb($verb, $this);
143 143
         }
144 144
 
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
 
174 174
                 // Could be translatable field
175 175
                 if ($this->isTranslatableKey($field)) {
176
-                    $attribute = substr($field, strrpos($field, '.') + 1);
176
+                    $attribute = substr($field, strrpos($field, '.')+1);
177 177
                     $locale = substr($field, strlen('trans.'), 2);
178 178
 
179 179
                     return $this->model->getTranslationFor($attribute, $locale);
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 
212 212
             // Make our media fields able to be translatable as well...
213 213
             if ($field->ofType(FieldType::MEDIA, FieldType::DOCUMENT)) {
214
-                throw new \Exception('Cannot process the ' . $field->key . ' media field. Currently no support for translatable media files. We should fix this!');
214
+                throw new \Exception('Cannot process the '.$field->key.' media field. Currently no support for translatable media files. We should fix this!');
215 215
             }
216 216
 
217 217
             // Okay so this is a bit odd but since all translations are expected to be inside the trans
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
             : 'chief::back._fields.formgroup';
254 254
 
255 255
         // form element view path
256
-        $viewpath = 'chief::back._fields.' . $field->type;
256
+        $viewpath = 'chief::back._fields.'.$field->type;
257 257
 
258 258
         return view($path, [
259 259
             'field'    => $field,
Please login to merge, or discard this patch.
src/Management/ManagesPagebuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         
49 49
         $availableChildren = AvailableChildren::forParent($model);
50 50
         
51
-        $modules = $availableChildren->onlyModules()->reject(function ($module) use ($model) {
51
+        $modules = $availableChildren->onlyModules()->reject(function($module) use ($model) {
52 52
             return $module->page_id != null && $module->page_id != $model->id;
53 53
         });
54 54
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         $available_sets = FlatReferencePresenter::toGroupedSelectValues($availableChildren->onlySets())->toArray();
58 58
 
59 59
         // Current sections
60
-        $sections = $model->children()->map(function ($section, $index) {
60
+        $sections = $model->children()->map(function($section, $index) {
61 61
             if ($section instanceof TranslatableContract) {
62 62
                 $section->injectTranslationForForm();
63 63
             }
Please login to merge, or discard this patch.
src/Management/Register.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -46,14 +46,14 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Fields/Fields.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     public function keys(): array
36 36
     {
37
-        return array_map(function (Field $field) {
37
+        return array_map(function(Field $field) {
38 38
             return $field->key();
39 39
         }, $this->fields);
40 40
     }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
     private function validateFields(array $fields)
70 70
     {
71
-        array_map(function (Field $field) {
71
+        array_map(function(Field $field) {
72 72
         }, $fields);
73 73
     }
74 74
 
@@ -112,8 +112,8 @@  discard block
 block discarded – undo
112 112
 
113 113
     public function offsetSet($offset, $value)
114 114
     {
115
-        if (! $value instanceof Field) {
116
-            throw new \InvalidArgumentException('Passed value must be of type ' . Field::class);
115
+        if (!$value instanceof Field) {
116
+            throw new \InvalidArgumentException('Passed value must be of type '.Field::class);
117 117
         }
118 118
 
119 119
         $this->fields[$offset] = $value;
Please login to merge, or discard this patch.
src/Fields/LocalizedFieldValidationRules.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
                 // prepend the name with the expected trans.<locale>. string
28 28
                 $localizedAttr = (false !== strpos($attr, '*'))
29 29
                     ? str_replace('*', $locale, $attr)
30
-                    : 'trans.' . $locale . '.' . $attr;
30
+                    : 'trans.'.$locale.'.'.$attr;
31 31
 
32 32
                 $localizedRules[$localizedAttr] = $rule;
33 33
             }
@@ -47,13 +47,13 @@  discard block
 block discarded – undo
47 47
      */
48 48
     public function influenceByPayload(array $data)
49 49
     {
50
-        if (! isset($data['trans'])) {
50
+        if (!isset($data['trans'])) {
51 51
             return $this;
52 52
         }
53 53
 
54 54
         // Remove locales that are considered empty in the request payload
55 55
         foreach ($data['trans'] as $locale => $values) {
56
-            if ($locale == $this->defaultLocale || ! is_array_empty($values)) {
56
+            if ($locale == $this->defaultLocale || !is_array_empty($values)) {
57 57
                 continue;
58 58
             }
59 59
 
Please login to merge, or discard this patch.
src/Fields/Types/SelectField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Thinktomorrow\Chief\Fields\Types;
5 5
 
Please login to merge, or discard this patch.
src/Fields/Types/PagebuilderField.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Thinktomorrow\Chief\Fields\Types;
6 6
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
         $value = parent::__get($key);
51 51
 
52 52
         // Default empty array for these following values
53
-        if (!$value && in_array($key, ['sections','availableModules','availablePages', 'availableSets'])) {
53
+        if (!$value && in_array($key, ['sections', 'availableModules', 'availablePages', 'availableSets'])) {
54 54
             return [];
55 55
         }
56 56
 
Please login to merge, or discard this patch.