@@ -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,30 +293,30 @@ 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 | $this->{$generator} = $this->{$generatorMethodName}(); |
308 | 308 | $this->inputs[$generator] = $this->{$generatorMethodName}(); |
309 | 309 | } |
310 | 310 | else { |
311 | 311 | |
312 | - if($this->checkProperties('auto_generators_dont_overwrite') |
|
313 | - && in_array($generator,$this->getAutoGeneratorsDontOverwrite())){ |
|
312 | + if ($this->checkProperties('auto_generators_dont_overwrite') |
|
313 | + && in_array($generator, $this->getAutoGeneratorsDontOverwrite())) { |
|
314 | 314 | $this->{$generator} = $this->{$generatorMethodName}(); |
315 | 315 | $this->inputs[$generator] = $this->{$generatorMethodName}(); |
316 | 316 | } |
317 | 317 | |
318 | - if($this->checkProperties('generators_dont_overwrite') |
|
319 | - && in_array($generator,$this->getGeneratorsDontOverwrite())){ |
|
318 | + if ($this->checkProperties('generators_dont_overwrite') |
|
319 | + && in_array($generator, $this->getGeneratorsDontOverwrite())) { |
|
320 | 320 | $this->{$generator} = $this->{$generatorMethodName}(); |
321 | 321 | $this->inputs[$generator] = $this->{$generatorMethodName}(); |
322 | 322 | } |
@@ -338,11 +338,11 @@ discard block |
||
338 | 338 | $list = []; |
339 | 339 | |
340 | 340 | foreach ($this->requestData as $key=>$item) { |
341 | - if(property_exists($this,'requestExcept') && !in_array($key,$this->requestExcept)){ |
|
341 | + if (property_exists($this, 'requestExcept') && !in_array($key, $this->requestExcept)) { |
|
342 | 342 | $list[$key] = $item; |
343 | 343 | } |
344 | 344 | |
345 | - if(!property_exists($this,'requestExcept')){ |
|
345 | + if (!property_exists($this, 'requestExcept')) { |
|
346 | 346 | $list[$key] = $item; |
347 | 347 | } |
348 | 348 | } |
@@ -385,7 +385,7 @@ discard block |
||
385 | 385 | { |
386 | 386 | // we use the http method to write |
387 | 387 | // the values to the inputs and origin properties. |
388 | - foreach($this->clientData as $key=>$value){ |
|
388 | + foreach ($this->clientData as $key=>$value) { |
|
389 | 389 | |
390 | 390 | //inputs and origin properties |
391 | 391 | $this->inputs[$key] = $value; |
@@ -432,9 +432,9 @@ discard block |
||
432 | 432 | |
433 | 433 | // we update the input values after |
434 | 434 | // we receive and check the saved objects. |
435 | - foreach ($clientObjects as $key=>$value){ |
|
435 | + foreach ($clientObjects as $key=>$value) { |
|
436 | 436 | |
437 | - if(isset($clientObjects['origin'][$key])){ |
|
437 | + if (isset($clientObjects['origin'][$key])) { |
|
438 | 438 | |
439 | 439 | $this->{$key} = $clientObjects['origin'][$key]; |
440 | 440 | $this->inputs[$key] = $this->{$key}; |
@@ -461,11 +461,11 @@ discard block |
||
461 | 461 | |
462 | 462 | // the request update to be performed using |
463 | 463 | // the method name to be used with the http method. |
464 | - $this->setRequestInputs($requestMethod,$key); |
|
464 | + $this->setRequestInputs($requestMethod, $key); |
|
465 | 465 | |
466 | 466 | // the request update to be performed using |
467 | 467 | // the method name to be used without the http method. |
468 | - $this->setRequestInputs($key,$key); |
|
468 | + $this->setRequestInputs($key, $key); |
|
469 | 469 | } |
470 | 470 | |
471 | 471 | /** |
@@ -476,20 +476,20 @@ discard block |
||
476 | 476 | * |
477 | 477 | * @throws ReflectionExceptionAlias |
478 | 478 | */ |
479 | - private function setRequestInputs($method,$key) |
|
479 | + private function setRequestInputs($method, $key) |
|
480 | 480 | { |
481 | - if(method_exists($this,$method) && $this->reflection->reflectionMethodParams($method)->isProtected){ |
|
481 | + if (method_exists($this, $method) && $this->reflection->reflectionMethodParams($method)->isProtected) { |
|
482 | 482 | |
483 | 483 | //check annotations for method |
484 | - $annotation = app()->resolve(ClientAnnotationManager::class,['request'=>$this]); |
|
485 | - $annotation->annotation($method,$key); |
|
484 | + $annotation = app()->resolve(ClientAnnotationManager::class, ['request'=>$this]); |
|
485 | + $annotation->annotation($method, $key); |
|
486 | 486 | |
487 | - if(isset($this->inputs[$key]) && is_array($this->inputs[$key])){ |
|
487 | + if (isset($this->inputs[$key]) && is_array($this->inputs[$key])) { |
|
488 | 488 | |
489 | 489 | $inputKeys = $this->inputs[$key]; |
490 | 490 | |
491 | 491 | $this->inputs[$key] = []; |
492 | - foreach ($inputKeys as $input){ |
|
492 | + foreach ($inputKeys as $input) { |
|
493 | 493 | |
494 | 494 | $this->{$key} = $input; |
495 | 495 | $keyMethod = $this->{$method}(); |
@@ -497,8 +497,8 @@ discard block |
||
497 | 497 | $this->requestData[$key][] = $keyMethod; |
498 | 498 | } |
499 | 499 | } |
500 | - else{ |
|
501 | - if(isset($this->inputs[$key])){ |
|
500 | + else { |
|
501 | + if (isset($this->inputs[$key])) { |
|
502 | 502 | $keyMethod = $this->{$method}(); |
503 | 503 | $this->inputs[$key] = $keyMethod; |
504 | 504 | $this->requestData[$key] = $keyMethod; |
@@ -517,8 +517,8 @@ discard block |
||
517 | 517 | { |
518 | 518 | // the auto object validate property is the property |
519 | 519 | // where all of your request values are automatically validated. |
520 | - if(property_exists($this,'autoObjectValidate') |
|
521 | - && is_array($this->autoObjectValidate) && count($this->autoObjectValidate)){ |
|
520 | + if (property_exists($this, 'autoObjectValidate') |
|
521 | + && is_array($this->autoObjectValidate) && count($this->autoObjectValidate)) { |
|
522 | 522 | $this->autoValidate('autoObjectValidate'); |
523 | 523 | } |
524 | 524 | } |