@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | * |
52 | 52 | * @throws ReflectionExceptionAlias |
53 | 53 | */ |
54 | - public function __construct($clientData=null) |
|
54 | + public function __construct($clientData = null) |
|
55 | 55 | { |
56 | 56 | //reflection process |
57 | 57 | $this->reflection = app()['reflection']($this); |
@@ -74,25 +74,25 @@ discard block |
||
74 | 74 | private function autoValidate($validate) |
75 | 75 | { |
76 | 76 | //we get the values to auto-validate. |
77 | - foreach ($this->{$validate} as $object=>$datas){ |
|
77 | + foreach ($this->{$validate} as $object=>$datas) { |
|
78 | 78 | |
79 | 79 | // the auto-validate value must necessarily represent a class. |
80 | 80 | // otherwise auto-validate is not used. |
81 | - if(Utils::isNamespaceExists($object)){ |
|
81 | + if (Utils::isNamespaceExists($object)) { |
|
82 | 82 | $getObjectInstance = app()->resolve($object); |
83 | 83 | |
84 | 84 | // we get the index values, |
85 | 85 | // which are called methods of the auto-validate value that represents the class. |
86 | - foreach ($datas as $dataKey=>$data){ |
|
86 | + foreach ($datas as $dataKey=>$data) { |
|
87 | 87 | |
88 | 88 | // if the methods of the auto-validate class resolved by the container resolve method apply, |
89 | 89 | // the process of auto-validate automatic implementation will be completed. |
90 | - if(is_numeric($dataKey) && method_exists($getObjectInstance,$data)){ |
|
91 | - if(isset($this->origin[$data])){ |
|
92 | - if(!is_array($this->origin[$data])){ |
|
90 | + if (is_numeric($dataKey) && method_exists($getObjectInstance, $data)) { |
|
91 | + if (isset($this->origin[$data])) { |
|
92 | + if (!is_array($this->origin[$data])) { |
|
93 | 93 | $this->origin[$data] = array($this->origin[$data]); |
94 | 94 | } |
95 | - foreach ($this->origin[$data] as $originData){ |
|
95 | + foreach ($this->origin[$data] as $originData) { |
|
96 | 96 | $getObjectInstance->{$data}($originData); |
97 | 97 | } |
98 | 98 | } |
@@ -111,15 +111,15 @@ discard block |
||
111 | 111 | { |
112 | 112 | // expected method is executed. |
113 | 113 | // this method is a must for http method values to be found in this property. |
114 | - if($this->checkProperties('capsule')){ |
|
114 | + if ($this->checkProperties('capsule')) { |
|
115 | 115 | |
116 | 116 | $caret = $this->capsuleCaret(); |
117 | 117 | |
118 | - foreach($this->inputs as $input=>$value){ |
|
118 | + foreach ($this->inputs as $input=>$value) { |
|
119 | 119 | |
120 | - if(isset($caret[$input]) || ( |
|
121 | - $this->checkProperties('capsule') && !in_array($input,$this->capsule) |
|
122 | - )){ |
|
120 | + if (isset($caret[$input]) || ( |
|
121 | + $this->checkProperties('capsule') && !in_array($input, $this->capsule) |
|
122 | + )) { |
|
123 | 123 | exception('capsuleRequestException') |
124 | 124 | ->overflow('The '.$input.' value cannot be sent.'); |
125 | 125 | } |
@@ -136,15 +136,15 @@ discard block |
||
136 | 136 | { |
137 | 137 | $caret = []; |
138 | 138 | |
139 | - foreach($this->inputs as $input=>$item){ |
|
140 | - if(in_array('@'.$input,$this->capsule)){ |
|
139 | + foreach ($this->inputs as $input=>$item) { |
|
140 | + if (in_array('@'.$input, $this->capsule)) { |
|
141 | 141 | $caret[$input] = $item; |
142 | 142 | } |
143 | 143 | } |
144 | 144 | |
145 | 145 | foreach ($this->capsule as $item) { |
146 | - if(preg_match('#@.*#is',$item)){ |
|
147 | - $this->capsule = array_diff($this->capsule,[$item]); |
|
146 | + if (preg_match('#@.*#is', $item)) { |
|
147 | + $this->capsule = array_diff($this->capsule, [$item]); |
|
148 | 148 | } |
149 | 149 | } |
150 | 150 | |
@@ -163,15 +163,15 @@ discard block |
||
163 | 163 | |
164 | 164 | // Determines which HTTP method |
165 | 165 | // the request object will be exposed to. |
166 | - if($this->checkProperties('http')){ |
|
166 | + if ($this->checkProperties('http')) { |
|
167 | 167 | |
168 | 168 | // if the current http method does not exist |
169 | 169 | // in the http object, the exception will be thrown. |
170 | - if(!in_array($method,$this->http)){ |
|
170 | + if (!in_array($method, $this->http)) { |
|
171 | 171 | |
172 | 172 | //exception batMethodCall |
173 | 173 | exception()->badMethodCall( |
174 | - 'Invalid http method process for '.class_basename($this).'.That is accepted http methods ['.implode(",",$this->http).'] '); |
|
174 | + 'Invalid http method process for '.class_basename($this).'.That is accepted http methods ['.implode(",", $this->http).'] '); |
|
175 | 175 | } |
176 | 176 | } |
177 | 177 | } |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | { |
187 | 187 | // from the properties of the object properties to |
188 | 188 | // the existing variables, control the array and at least one element. |
189 | - return (property_exists($this,$properties) |
|
189 | + return (property_exists($this, $properties) |
|
190 | 190 | && is_array($this->{$properties}) && count($this->{$properties})) ? true : false; |
191 | 191 | } |
192 | 192 | |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | { |
200 | 200 | // we are saving the expected values for the request in container. |
201 | 201 | // this record can be returned in exception information. |
202 | - app()->register('requestExpected',$this->expected); |
|
202 | + app()->register('requestExpected', $this->expected); |
|
203 | 203 | } |
204 | 204 | |
205 | 205 | /** |
@@ -211,15 +211,15 @@ discard block |
||
211 | 211 | public function except($except) |
212 | 212 | { |
213 | 213 | // the except parameter is a callable value. |
214 | - if(is_callable($except)){ |
|
215 | - $call = call_user_func_array($except,[$this]); |
|
214 | + if (is_callable($except)) { |
|
215 | + $call = call_user_func_array($except, [$this]); |
|
216 | 216 | $except = $call; |
217 | 217 | } |
218 | 218 | |
219 | 219 | // except with the except exceptions property |
220 | 220 | // and then assigning them to the inputs property. |
221 | - $this->except = array_merge($this->except,$except); |
|
222 | - $this->inputs = array_diff_key($this->inputs,array_flip($this->except)); |
|
221 | + $this->except = array_merge($this->except, $except); |
|
222 | + $this->inputs = array_diff_key($this->inputs, array_flip($this->except)); |
|
223 | 223 | |
224 | 224 | return $this; |
225 | 225 | } |
@@ -233,27 +233,27 @@ discard block |
||
233 | 233 | { |
234 | 234 | // expected method is executed. |
235 | 235 | // this method is a must for http method values to be found in this property. |
236 | - if($this->checkProperties('expected')){ |
|
236 | + if ($this->checkProperties('expected')) { |
|
237 | 237 | |
238 | 238 | // if the expected values are not found in the inputs array, |
239 | 239 | // the exception will be thrown. |
240 | - foreach ($this->expected as $expected){ |
|
240 | + foreach ($this->expected as $expected) { |
|
241 | 241 | |
242 | 242 | $expectedValues = []; |
243 | 243 | |
244 | 244 | // mandatory expected data for each key can be separated by | operator. |
245 | 245 | // this is evaluated as "or". |
246 | - foreach($expectedData = explode("|",$expected) as $inputs){ |
|
247 | - if(!isset($this->inputs[$inputs])){ |
|
246 | + foreach ($expectedData = explode("|", $expected) as $inputs) { |
|
247 | + if (!isset($this->inputs[$inputs])) { |
|
248 | 248 | $expectedValues[] = $inputs; |
249 | 249 | } |
250 | 250 | } |
251 | 251 | |
252 | 252 | // if the expectedData and expectedValues |
253 | 253 | // array are numerically equal to the expected key, the exception is thrown. |
254 | - if(count($expectedData)===count($expectedValues)){ |
|
254 | + if (count($expectedData)===count($expectedValues)) { |
|
255 | 255 | exception($expected) |
256 | - ->unexpectedValue('You absolutely have to send the value '.implode(" or ",$expectedValues).' for request object'); |
|
256 | + ->unexpectedValue('You absolutely have to send the value '.implode(" or ", $expectedValues).' for request object'); |
|
257 | 257 | } |
258 | 258 | } |
259 | 259 | } |
@@ -268,17 +268,17 @@ discard block |
||
268 | 268 | { |
269 | 269 | // check the presence of the generator object |
270 | 270 | // and operate the generator over this object. |
271 | - if($this->checkProperties('auto_generators')){ |
|
271 | + if ($this->checkProperties('auto_generators')) { |
|
272 | 272 | $generators = $this->getAutoGenerators(); |
273 | 273 | } |
274 | 274 | |
275 | 275 | // check the presence of the generator object |
276 | 276 | // and operate the generator over this object. |
277 | - if($this->checkProperties('generators')){ |
|
278 | - $generators = array_merge(isset($generators) ? $generators: [],$this->getGenerators()); |
|
277 | + if ($this->checkProperties('generators')) { |
|
278 | + $generators = array_merge(isset($generators) ? $generators : [], $this->getGenerators()); |
|
279 | 279 | } |
280 | 280 | |
281 | - if(isset($generators)){ |
|
281 | + if (isset($generators)) { |
|
282 | 282 | $this->generatorMethod($generators); |
283 | 283 | } |
284 | 284 | } |
@@ -293,21 +293,21 @@ discard block |
||
293 | 293 | private function generatorMethod($generators) |
294 | 294 | { |
295 | 295 | //generator array object |
296 | - foreach ($generators as $generator){ |
|
296 | + foreach ($generators as $generator) { |
|
297 | 297 | |
298 | 298 | //generator method name |
299 | 299 | $generatorMethodName = $generator.'Generator'; |
300 | 300 | |
301 | 301 | // if the generator method is present, |
302 | 302 | // the fake value is assigned. |
303 | - if(method_exists($this,$generatorMethodName)){ |
|
303 | + if (method_exists($this, $generatorMethodName)) { |
|
304 | 304 | |
305 | 305 | //fake registration |
306 | - if(!isset($this->inputs[$generator])){ |
|
306 | + if (!isset($this->inputs[$generator])) { |
|
307 | 307 | |
308 | 308 | $generatorMethodNameResult = $this->{$generatorMethodName}(); |
309 | 309 | |
310 | - if(!is_null($generatorMethodNameResult)){ |
|
310 | + if (!is_null($generatorMethodNameResult)) { |
|
311 | 311 | $this->{$generator} = $this->{$generatorMethodName}(); |
312 | 312 | $this->inputs[$generator] = $this->{$generatorMethodName}(); |
313 | 313 | $this->requestData[$generator] = $this->inputs[$generator]; |
@@ -315,14 +315,14 @@ discard block |
||
315 | 315 | } |
316 | 316 | else { |
317 | 317 | |
318 | - if($this->checkProperties('auto_generators_dont_overwrite') |
|
319 | - && in_array($generator,$this->getAutoGeneratorsDontOverwrite())){ |
|
318 | + if ($this->checkProperties('auto_generators_dont_overwrite') |
|
319 | + && in_array($generator, $this->getAutoGeneratorsDontOverwrite())) { |
|
320 | 320 | $this->{$generator} = $this->{$generatorMethodName}(); |
321 | 321 | $this->inputs[$generator] = $this->{$generatorMethodName}(); |
322 | 322 | } |
323 | 323 | |
324 | - if($this->checkProperties('generators_dont_overwrite') |
|
325 | - && in_array($generator,$this->getGeneratorsDontOverwrite())){ |
|
324 | + if ($this->checkProperties('generators_dont_overwrite') |
|
325 | + && in_array($generator, $this->getGeneratorsDontOverwrite())) { |
|
326 | 326 | $this->{$generator} = $this->{$generatorMethodName}(); |
327 | 327 | $this->inputs[$generator] = $this->{$generatorMethodName}(); |
328 | 328 | } |
@@ -344,11 +344,11 @@ discard block |
||
344 | 344 | $list = []; |
345 | 345 | |
346 | 346 | foreach ($this->requestData as $key=>$item) { |
347 | - if(property_exists($this,'requestExcept') && !in_array($key,$this->requestExcept)){ |
|
347 | + if (property_exists($this, 'requestExcept') && !in_array($key, $this->requestExcept)) { |
|
348 | 348 | $list[$key] = $item; |
349 | 349 | } |
350 | 350 | |
351 | - if(!property_exists($this,'requestExcept')){ |
|
351 | + if (!property_exists($this, 'requestExcept')) { |
|
352 | 352 | $list[$key] = $item; |
353 | 353 | } |
354 | 354 | } |
@@ -391,7 +391,7 @@ discard block |
||
391 | 391 | { |
392 | 392 | // we use the http method to write |
393 | 393 | // the values to the inputs and origin properties. |
394 | - foreach($this->clientData as $key=>$value){ |
|
394 | + foreach ($this->clientData as $key=>$value) { |
|
395 | 395 | |
396 | 396 | //inputs and origin properties |
397 | 397 | $this->inputs[$key] = $value; |
@@ -438,9 +438,9 @@ discard block |
||
438 | 438 | |
439 | 439 | // we update the input values after |
440 | 440 | // we receive and check the saved objects. |
441 | - foreach ($clientObjects as $key=>$value){ |
|
441 | + foreach ($clientObjects as $key=>$value) { |
|
442 | 442 | |
443 | - if(isset($clientObjects['origin'][$key])){ |
|
443 | + if (isset($clientObjects['origin'][$key])) { |
|
444 | 444 | |
445 | 445 | $this->{$key} = $clientObjects['origin'][$key]; |
446 | 446 | $this->inputs[$key] = $this->{$key}; |
@@ -467,11 +467,11 @@ discard block |
||
467 | 467 | |
468 | 468 | // the request update to be performed using |
469 | 469 | // the method name to be used with the http method. |
470 | - $this->setRequestInputs($requestMethod,$key); |
|
470 | + $this->setRequestInputs($requestMethod, $key); |
|
471 | 471 | |
472 | 472 | // the request update to be performed using |
473 | 473 | // the method name to be used without the http method. |
474 | - $this->setRequestInputs($key,$key); |
|
474 | + $this->setRequestInputs($key, $key); |
|
475 | 475 | } |
476 | 476 | |
477 | 477 | /** |
@@ -482,20 +482,20 @@ discard block |
||
482 | 482 | * |
483 | 483 | * @throws ReflectionExceptionAlias |
484 | 484 | */ |
485 | - private function setRequestInputs($method,$key) |
|
485 | + private function setRequestInputs($method, $key) |
|
486 | 486 | { |
487 | - if(method_exists($this,$method) && $this->reflection->reflectionMethodParams($method)->isProtected){ |
|
487 | + if (method_exists($this, $method) && $this->reflection->reflectionMethodParams($method)->isProtected) { |
|
488 | 488 | |
489 | 489 | //check annotations for method |
490 | - $annotation = app()->resolve(ClientAnnotationManager::class,['request'=>$this]); |
|
491 | - $annotation->annotation($method,$key); |
|
490 | + $annotation = app()->resolve(ClientAnnotationManager::class, ['request'=>$this]); |
|
491 | + $annotation->annotation($method, $key); |
|
492 | 492 | |
493 | - if(isset($this->inputs[$key]) && is_array($this->inputs[$key])){ |
|
493 | + if (isset($this->inputs[$key]) && is_array($this->inputs[$key])) { |
|
494 | 494 | |
495 | 495 | $inputKeys = $this->inputs[$key]; |
496 | 496 | |
497 | 497 | $this->inputs[$key] = []; |
498 | - foreach ($inputKeys as $input){ |
|
498 | + foreach ($inputKeys as $input) { |
|
499 | 499 | |
500 | 500 | $this->{$key} = $input; |
501 | 501 | $keyMethod = $this->{$method}(); |
@@ -503,8 +503,8 @@ discard block |
||
503 | 503 | $this->requestData[$key][] = $keyMethod; |
504 | 504 | } |
505 | 505 | } |
506 | - else{ |
|
507 | - if(isset($this->inputs[$key])){ |
|
506 | + else { |
|
507 | + if (isset($this->inputs[$key])) { |
|
508 | 508 | $keyMethod = $this->{$method}(); |
509 | 509 | $this->inputs[$key] = $keyMethod; |
510 | 510 | $this->requestData[$key] = $keyMethod; |
@@ -523,8 +523,8 @@ discard block |
||
523 | 523 | { |
524 | 524 | // the auto object validate property is the property |
525 | 525 | // where all of your request values are automatically validated. |
526 | - if(property_exists($this,'autoObjectValidate') |
|
527 | - && is_array($this->autoObjectValidate) && count($this->autoObjectValidate)){ |
|
526 | + if (property_exists($this, 'autoObjectValidate') |
|
527 | + && is_array($this->autoObjectValidate) && count($this->autoObjectValidate)) { |
|
528 | 528 | $this->autoValidate('autoObjectValidate'); |
529 | 529 | } |
530 | 530 | } |
@@ -312,8 +312,7 @@ discard block |
||
312 | 312 | $this->inputs[$generator] = $this->{$generatorMethodName}(); |
313 | 313 | $this->requestData[$generator] = $this->inputs[$generator]; |
314 | 314 | } |
315 | - } |
|
316 | - else { |
|
315 | + } else { |
|
317 | 316 | |
318 | 317 | if($this->checkProperties('auto_generators_dont_overwrite') |
319 | 318 | && in_array($generator,$this->getAutoGeneratorsDontOverwrite())){ |
@@ -502,8 +501,7 @@ discard block |
||
502 | 501 | $this->inputs[$key][] = $keyMethod; |
503 | 502 | $this->requestData[$key][] = $keyMethod; |
504 | 503 | } |
505 | - } |
|
506 | - else{ |
|
504 | + } else{ |
|
507 | 505 | if(isset($this->inputs[$key])){ |
508 | 506 | $keyMethod = $this->{$method}(); |
509 | 507 | $this->inputs[$key] = $keyMethod; |