Passed
Push — master ( 8499b4...92dc8b )
by Smoren
01:43
created
src/Exceptions/SchematorException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     public static function ensureFilterExists(array $filterMap, string $filterName): void
28 28
     {
29
-        if(!isset($filterMap[$filterName])) {
29
+        if (!isset($filterMap[$filterName])) {
30 30
             throw new SchematorException(
31 31
                 "filter '{$filterName}' not found",
32 32
                 SchematorException::FILTER_NOT_FOUND,
Please login to merge, or discard this patch.
src/Factories/SchematorBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      */
41 41
     public function withFilters(iterable $filters): SchematorBuilderInterface
42 42
     {
43
-        foreach($filters as $filterName => $filter) {
43
+        foreach ($filters as $filterName => $filter) {
44 44
             $this->schemator->addFilter($filterName, $filter);
45 45
         }
46 46
         return $this;
Please login to merge, or discard this patch.
src/Components/MassSchemator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      */
33 33
     public function generate(iterable $source, array $schema): Generator
34 34
     {
35
-        foreach($source as $item) {
35
+        foreach ($source as $item) {
36 36
             yield $this->schemator->exec($item, $schema);
37 37
         }
38 38
     }
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
         $gen = $this->generate($source, $schema);
46 46
         $result = [];
47 47
 
48
-        foreach($gen as $item) {
48
+        foreach ($gen as $item) {
49 49
             $result[] = $item;
50 50
         }
51 51
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         $gen = $this->generate($source, $schema);
63 63
         $result = [];
64 64
 
65
-        foreach($gen as $item) {
65
+        foreach ($gen as $item) {
66 66
             $result[] = $item;
67 67
         }
68 68
 
Please login to merge, or discard this patch.
src/Components/Schemator.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -48,9 +48,9 @@  discard block
 block discarded – undo
48 48
     {
49 49
         $toAccessor = $this->nestedAccessorFactory->create($result, $this->pathDelimiter);
50 50
 
51
-        foreach($schema as $keyTo => $keyFrom) {
51
+        foreach ($schema as $keyTo => $keyFrom) {
52 52
             $value = $this->getValue($source, $keyFrom, $strict);
53
-            if($keyTo === '') {
53
+            if ($keyTo === '') {
54 54
                 return $value;
55 55
             }
56 56
             $toAccessor->set($keyTo, $value, $strict);
@@ -73,19 +73,19 @@  discard block
 block discarded – undo
73 73
      */
74 74
     public function getValue($source, $key, bool $strict = false)
75 75
     {
76
-        if($key === '' || $key === null) {
76
+        if ($key === '' || $key === null) {
77 77
             return $source;
78 78
         }
79 79
 
80
-        if($source === null || (!is_array($source) && !is_object($source))) {
80
+        if ($source === null || (!is_array($source) && !is_object($source))) {
81 81
             return $this->getValueFromUnsupportedSource($source, $key, $strict);
82 82
         }
83 83
 
84
-        if(is_string($key)) {
84
+        if (is_string($key)) {
85 85
             return $this->getValueByKey($source, $key, $strict);
86 86
         }
87 87
 
88
-        if(is_array($key)) {
88
+        if (is_array($key)) {
89 89
             return $this->getValueByFilters($source, $key, $strict);
90 90
         }
91 91
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
         try {
115 115
             $fromAccessor = $this->nestedAccessorFactory->create($source, $this->pathDelimiter);
116 116
             return $fromAccessor->get($key, $strict);
117
-        } catch(NestedAccessorException $e) {
117
+        } catch (NestedAccessorException $e) {
118 118
             throw SchematorException::createAsCannotGetValue($source, $key, $e);
119 119
         }
120 120
     }
@@ -130,13 +130,13 @@  discard block
 block discarded – undo
130 130
     protected function getValueByFilters($source, array $filters, bool $strict)
131 131
     {
132 132
         $result = $source;
133
-        foreach($filters as $filterConfig) {
134
-            if(is_string($filterConfig)) {
133
+        foreach ($filters as $filterConfig) {
134
+            if (is_string($filterConfig)) {
135 135
                 $result = $this->getValue($result, $filterConfig, $strict);
136
-            } elseif(is_array($filterConfig)) {
136
+            } elseif (is_array($filterConfig)) {
137 137
                 $result = $this->runFilter($filterConfig, $result, $source, $strict);
138 138
             } else {
139
-                if($strict) {
139
+                if ($strict) {
140 140
                     throw SchematorException::createAsUnsupportedFilterConfigType($filterConfig);
141 141
                 }
142 142
                 $result = null;
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
      */
157 157
     protected function getValueFromUnsupportedSource($source, $key, bool $strict)
158 158
     {
159
-        if(!$strict) {
159
+        if (!$strict) {
160 160
             return null;
161 161
         }
162 162
         throw SchematorException::createAsUnsupportedSourceType($source, $key);
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
      */
173 173
     protected function getValueByUnsupportedKey($source, $key, bool $strict)
174 174
     {
175
-        if(!$strict) {
175
+        if (!$strict) {
176 176
             return null;
177 177
         }
178 178
         throw SchematorException::createAsUnsupportedKeyType($source, $key);
@@ -198,8 +198,8 @@  discard block
 block discarded – undo
198 198
                 new FilterContext($this, $source, $rootSource),
199 199
                 ...$filterConfig
200 200
             );
201
-        } catch(Throwable $e) {
202
-            if($strict) {
201
+        } catch (Throwable $e) {
202
+            if ($strict) {
203 203
                 throw SchematorException::createAsFilterError($filterName, $filterConfig, $source, $e);
204 204
             }
205 205
             return null;
Please login to merge, or discard this patch.
src/Components/NestedAccessor.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -29,11 +29,11 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function __construct(&$source, string $pathDelimiter = '.')
31 31
     {
32
-        if($source === null) {
32
+        if ($source === null) {
33 33
             $source = [];
34 34
         }
35 35
 
36
-        if(is_scalar($source)) {
36
+        if (is_scalar($source)) {
37 37
             throw NestedAccessorException::createAsSourceIsScalar($source);
38 38
         }
39 39
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     public function get(?string $path = null, bool $strict = true)
53 53
     {
54 54
         // when path is not specified
55
-        if($path === null || $path === '') {
55
+        if ($path === null || $path === '') {
56 56
             // let's return the full source
57 57
             return $this->source;
58 58
         }
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         );
71 71
 
72 72
         // when strict mode is on and we got errors
73
-        if($strict && $errorsCount) {
73
+        if ($strict && $errorsCount) {
74 74
             throw NestedAccessorException::createAsCannotGetValue($path, $errorsCount);
75 75
         }
76 76
 
@@ -101,9 +101,9 @@  discard block
 block discarded – undo
101 101
     protected function _get($source, array $path, &$result, int &$errorsCount): void
102 102
     {
103 103
         // if path stack is empty — we reached target value of given path in source argument
104
-        if(!count($path)) {
104
+        if (!count($path)) {
105 105
             // so if result is multiple
106
-            if(is_array($result)) {
106
+            if (is_array($result)) {
107 107
                 // we append source to result
108 108
                 $result[] = $source;
109 109
             } else {
@@ -115,11 +115,11 @@  discard block
 block discarded – undo
115 115
         }
116 116
 
117 117
         // let's iterate every path part from stack
118
-        while(count($path)) {
118
+        while (count($path)) {
119 119
             $key = array_pop($path);
120 120
 
121
-            if(is_array($source)) {
122
-                if(!array_key_exists($key, $source)) {
121
+            if (is_array($source)) {
122
+                if (!array_key_exists($key, $source)) {
123 123
                     // path part key is missing in source array
124 124
                     $errorsCount++;
125 125
                     // we cannot go deeper
@@ -127,8 +127,8 @@  discard block
 block discarded – undo
127 127
                 }
128 128
                 // go to the next nested level
129 129
                 $source = $source[$key];
130
-            } elseif(is_object($source)) {
131
-                if(!property_exists($source, $key)) {
130
+            } elseif (is_object($source)) {
131
+                if (!property_exists($source, $key)) {
132 132
                     // path part key is missing in source object
133 133
                     $errorsCount++;
134 134
                     // we cannot go deeper
@@ -145,13 +145,13 @@  discard block
 block discarded – undo
145 145
 
146 146
             // when it's not the last iteration of the stack
147 147
             // and the source is non-associative array (list)
148
-            if(count($path) && is_array($source) && !ArrHelper::isAssoc($source)) {
148
+            if (count($path) && is_array($source) && !ArrHelper::isAssoc($source)) {
149 149
                 // the result will be multiple
150
-                if(!is_array($result)) {
150
+                if (!is_array($result)) {
151 151
                     $result = [];
152 152
                 }
153 153
                 // and we need to use recursive call for each item of this array
154
-                foreach($source as $item) {
154
+                foreach ($source as $item) {
155 155
                     $this->_get($item, $path, $result, $errorsCount);
156 156
                 }
157 157
                 // we don't need to do something in this recursive branch
@@ -177,15 +177,15 @@  discard block
 block discarded – undo
177 177
     {
178 178
         $temp = &$source;
179 179
         // let's iterate every path part to go deeper into nesting
180
-        foreach($path as $key) {
181
-            if(isset($temp) && is_scalar($temp)) {
180
+        foreach ($path as $key) {
181
+            if (isset($temp) && is_scalar($temp)) {
182 182
                 // value in the middle of the path must me an array
183 183
                 $temp = [];
184 184
             }
185 185
 
186 186
             // go to the next nested level
187
-            if(is_object($temp)) {
188
-                if($strict && !property_exists($temp, $key)) {
187
+            if (is_object($temp)) {
188
+                if ($strict && !property_exists($temp, $key)) {
189 189
                     throw NestedAccessorException::createAsCannotSetValue($key);
190 190
                 }
191 191
                 $temp = &$temp->{$key};
Please login to merge, or discard this patch.
src/Factories/SchematorFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,11 +20,11 @@
 block discarded – undo
20 20
     {
21 21
         $builder = static::createBuilder();
22 22
 
23
-        if($withBaseFilters) {
23
+        if ($withBaseFilters) {
24 24
             $builder->withFilters(new BaseFiltersStorage());
25 25
         }
26 26
 
27
-        if($extraFilters !== null) {
27
+        if ($extraFilters !== null) {
28 28
             $builder->withFilters($extraFilters);
29 29
         }
30 30
 
Please login to merge, or discard this patch.
src/Filters/BaseFiltersStorage.php 1 patch
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -48,10 +48,10 @@  discard block
 block discarded – undo
48 48
     public static function date(FilterContextInterface $context, string $format, ?int $timezone = null)
49 49
     {
50 50
         $source = $context->getSource();
51
-        if($source === null) {
51
+        if ($source === null) {
52 52
             return null;
53 53
         }
54
-        if($timezone === null) {
54
+        if ($timezone === null) {
55 55
             return date($format, intval($source));
56 56
         }
57 57
         return gmdate($format, $source+3600*$timezone);
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     public static function implode(FilterContextInterface $context, string $delimiter = ', '): ?string
67 67
     {
68 68
         $source = $context->getSource();
69
-        if($source === null || !is_array($source)) {
69
+        if ($source === null || !is_array($source)) {
70 70
             return null;
71 71
         }
72 72
         return implode($delimiter, $source);
@@ -81,10 +81,10 @@  discard block
 block discarded – undo
81 81
     public static function explode(FilterContextInterface $context, string $delimiter = ', ')
82 82
     {
83 83
         $source = $context->getSource();
84
-        if($source === null || !is_scalar($source)) {
84
+        if ($source === null || !is_scalar($source)) {
85 85
             return null;
86 86
         }
87
-        return explode($delimiter, (string)$source);
87
+        return explode($delimiter, (string) $source);
88 88
     }
89 89
 
90 90
     /**
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     public static function sum(FilterContextInterface $context)
96 96
     {
97 97
         $source = $context->getSource();
98
-        if($source === null || !is_array($source)) {
98
+        if ($source === null || !is_array($source)) {
99 99
             return null;
100 100
         }
101 101
         return array_sum($source);
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
     public static function average(FilterContextInterface $context)
110 110
     {
111 111
         $source = $context->getSource();
112
-        if($source === null || !is_array($source)) {
112
+        if ($source === null || !is_array($source)) {
113 113
             return null;
114 114
         }
115 115
         return array_sum($source)/count($source);
@@ -124,26 +124,26 @@  discard block
 block discarded – undo
124 124
     public static function filter(FilterContextInterface $context, $filterConfig): ?array
125 125
     {
126 126
         $source = $context->getSource();
127
-        if($source === null || !is_array($source)) {
127
+        if ($source === null || !is_array($source)) {
128 128
             return null;
129 129
         }
130 130
 
131
-        if(is_callable($filterConfig)) {
131
+        if (is_callable($filterConfig)) {
132 132
             return array_values(array_filter($source, $filterConfig));
133 133
         }
134 134
 
135 135
         $result = [];
136 136
 
137
-        foreach($source as $item) {
138
-            foreach($filterConfig as $args) {
139
-                if(!is_array($args)) {
137
+        foreach ($source as $item) {
138
+            foreach ($filterConfig as $args) {
139
+                if (!is_array($args)) {
140 140
                     // TODO exception?
141 141
                     return null;
142 142
                 }
143 143
 
144 144
                 $rule = array_shift($args);
145 145
 
146
-                if(RuleHelper::check($item, $rule, $args)) {
146
+                if (RuleHelper::check($item, $rule, $args)) {
147 147
                     $result[] = $item;
148 148
                     break;
149 149
                 }
@@ -162,10 +162,10 @@  discard block
 block discarded – undo
162 162
     public static function sort(FilterContextInterface $context, ?callable $sortCallback = null): ?array
163 163
     {
164 164
         $source = $context->getSource();
165
-        if($source === null || !is_array($source)) {
165
+        if ($source === null || !is_array($source)) {
166 166
             return null;
167 167
         }
168
-        if($sortCallback !== null) {
168
+        if ($sortCallback !== null) {
169 169
             usort($source, $sortCallback);
170 170
         } else {
171 171
             sort($source);
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
     public static function rsort(FilterContextInterface $context): ?array
182 182
     {
183 183
         $source = $context->getSource();
184
-        if($source === null || !is_array($source)) {
184
+        if ($source === null || !is_array($source)) {
185 185
             return null;
186 186
         }
187 187
 
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
     public static function path(FilterContextInterface $context)
199 199
     {
200 200
         $source = $context->getSource();
201
-        if($source === null) {
201
+        if ($source === null) {
202 202
             return null;
203 203
         }
204 204
         return $context->getSchemator()->getValue($context->getRootSource(), $source);
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
     public static function flatten(FilterContextInterface $context): ?array
213 213
     {
214 214
         $source = $context->getSource();
215
-        if($source === null || !is_array($source)) {
215
+        if ($source === null || !is_array($source)) {
216 216
             return null;
217 217
         }
218 218
         return ArrHelper::flatten($source);
@@ -227,24 +227,24 @@  discard block
 block discarded – undo
227 227
     public static function replace(FilterContextInterface $context, array $rules)
228 228
     {
229 229
         $source = $context->getSource();
230
-        if($source === null) {
230
+        if ($source === null) {
231 231
             return null;
232 232
         }
233 233
 
234 234
         $isArray = is_array($source);
235 235
 
236
-        if(!$isArray) {
236
+        if (!$isArray) {
237 237
             $source = [$source];
238 238
         }
239 239
 
240 240
         $result = [];
241 241
 
242
-        foreach($source as $item) {
242
+        foreach ($source as $item) {
243 243
             $isReplaced = false;
244 244
             $elseValue = $item;
245 245
 
246
-            foreach($rules as $args) {
247
-                if(!is_array($args)) {
246
+            foreach ($rules as $args) {
247
+                if (!is_array($args)) {
248 248
                     // TODO exception?
249 249
                     return null;
250 250
                 }
@@ -252,13 +252,13 @@  discard block
 block discarded – undo
252 252
                 $value = array_shift($args);
253 253
                 $rule = array_shift($args);
254 254
 
255
-                if($rule === 'else') {
255
+                if ($rule === 'else') {
256 256
                     $elseValue = $value;
257 257
                 }
258 258
 
259 259
                 $replace = null;
260 260
 
261
-                if(RuleHelper::check($item, $rule, $args)) {
261
+                if (RuleHelper::check($item, $rule, $args)) {
262 262
                     $replace = $value;
263 263
                     $isReplaced = true;
264 264
 
@@ -267,12 +267,12 @@  discard block
 block discarded – undo
267 267
                 }
268 268
             }
269 269
 
270
-            if(!$isReplaced) {
270
+            if (!$isReplaced) {
271 271
                 $result[] = $elseValue;
272 272
             }
273 273
         }
274 274
 
275
-        if(!$isArray) {
275
+        if (!$isArray) {
276 276
             $result = $result[0];
277 277
         }
278 278
 
Please login to merge, or discard this patch.