Test Setup Failed
Push — master ( b263db...d9ea8d )
by Php Easy Api
04:16
created
src/resta/Client/Client.php 2 patches
Spacing   +61 added lines, -61 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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,35 +293,35 @@  discard block
 block discarded – undo
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
                     }
314 314
                 }
315 315
                 else {
316 316
 
317
-                    if($this->checkProperties('auto_generators_dont_overwrite')
318
-                        && in_array($generator,$this->getAutoGeneratorsDontOverwrite())){
317
+                    if ($this->checkProperties('auto_generators_dont_overwrite')
318
+                        && in_array($generator, $this->getAutoGeneratorsDontOverwrite())) {
319 319
                         $this->{$generator} = $this->{$generatorMethodName}();
320 320
                         $this->inputs[$generator] = $this->{$generatorMethodName}();
321 321
                     }
322 322
 
323
-                    if($this->checkProperties('generators_dont_overwrite')
324
-                        && in_array($generator,$this->getGeneratorsDontOverwrite())){
323
+                    if ($this->checkProperties('generators_dont_overwrite')
324
+                        && in_array($generator, $this->getGeneratorsDontOverwrite())) {
325 325
                         $this->{$generator} = $this->{$generatorMethodName}();
326 326
                         $this->inputs[$generator] = $this->{$generatorMethodName}();
327 327
                     }
@@ -343,11 +343,11 @@  discard block
 block discarded – undo
343 343
         $list = [];
344 344
 
345 345
         foreach ($this->requestData as $key=>$item) {
346
-            if(property_exists($this,'requestExcept') && !in_array($key,$this->requestExcept)){
346
+            if (property_exists($this, 'requestExcept') && !in_array($key, $this->requestExcept)) {
347 347
                 $list[$key] = $item;
348 348
             }
349 349
 
350
-            if(!property_exists($this,'requestExcept')){
350
+            if (!property_exists($this, 'requestExcept')) {
351 351
                 $list[$key] = $item;
352 352
             }
353 353
         }
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
     {
391 391
         // we use the http method to write
392 392
         // the values to the inputs and origin properties.
393
-        foreach($this->clientData as $key=>$value){
393
+        foreach ($this->clientData as $key=>$value) {
394 394
 
395 395
             //inputs and origin properties
396 396
             $this->inputs[$key] = $value;
@@ -437,9 +437,9 @@  discard block
 block discarded – undo
437 437
 
438 438
         // we update the input values ​​after
439 439
         // we receive and check the saved objects.
440
-        foreach ($clientObjects as $key=>$value){
440
+        foreach ($clientObjects as $key=>$value) {
441 441
 
442
-            if(isset($clientObjects['origin'][$key])){
442
+            if (isset($clientObjects['origin'][$key])) {
443 443
 
444 444
                 $this->{$key} = $clientObjects['origin'][$key];
445 445
                 $this->inputs[$key] = $this->{$key};
@@ -466,11 +466,11 @@  discard block
 block discarded – undo
466 466
 
467 467
         // the request update to be performed using
468 468
         // the method name to be used with the http method.
469
-        $this->setRequestInputs($requestMethod,$key);
469
+        $this->setRequestInputs($requestMethod, $key);
470 470
 
471 471
         // the request update to be performed using
472 472
         // the method name to be used without the http method.
473
-        $this->setRequestInputs($key,$key);
473
+        $this->setRequestInputs($key, $key);
474 474
     }
475 475
 
476 476
     /**
@@ -481,20 +481,20 @@  discard block
 block discarded – undo
481 481
      *
482 482
      * @throws ReflectionExceptionAlias
483 483
      */
484
-    private function setRequestInputs($method,$key)
484
+    private function setRequestInputs($method, $key)
485 485
     {
486
-        if(method_exists($this,$method) && $this->reflection->reflectionMethodParams($method)->isProtected){
486
+        if (method_exists($this, $method) && $this->reflection->reflectionMethodParams($method)->isProtected) {
487 487
 
488 488
             //check annotations for method
489
-            $annotation = app()->resolve(ClientAnnotationManager::class,['request'=>$this]);
490
-            $annotation->annotation($method,$key);
489
+            $annotation = app()->resolve(ClientAnnotationManager::class, ['request'=>$this]);
490
+            $annotation->annotation($method, $key);
491 491
 
492
-            if(isset($this->inputs[$key]) && is_array($this->inputs[$key])){
492
+            if (isset($this->inputs[$key]) && is_array($this->inputs[$key])) {
493 493
 
494 494
                 $inputKeys = $this->inputs[$key];
495 495
 
496 496
                 $this->inputs[$key] = [];
497
-                foreach ($inputKeys as $input){
497
+                foreach ($inputKeys as $input) {
498 498
 
499 499
                     $this->{$key}               = $input;
500 500
                     $keyMethod                  = $this->{$method}();
@@ -502,8 +502,8 @@  discard block
 block discarded – undo
502 502
                     $this->requestData[$key][]  = $keyMethod;
503 503
                 }
504 504
             }
505
-            else{
506
-                if(isset($this->inputs[$key])){
505
+            else {
506
+                if (isset($this->inputs[$key])) {
507 507
                     $keyMethod = $this->{$method}();
508 508
                     $this->inputs[$key] = $keyMethod;
509 509
                     $this->requestData[$key] = $keyMethod;
@@ -522,8 +522,8 @@  discard block
 block discarded – undo
522 522
     {
523 523
         // the auto object validate property is the property
524 524
         // where all of your request values ​​are automatically validated.
525
-        if(property_exists($this,'autoObjectValidate')
526
-            && is_array($this->autoObjectValidate) && count($this->autoObjectValidate)){
525
+        if (property_exists($this, 'autoObjectValidate')
526
+            && is_array($this->autoObjectValidate) && count($this->autoObjectValidate)) {
527 527
             $this->autoValidate('autoObjectValidate');
528 528
         }
529 529
     }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -311,8 +311,7 @@  discard block
 block discarded – undo
311 311
                         $this->{$generator} = $this->{$generatorMethodName}();
312 312
                         $this->inputs[$generator] = $this->{$generatorMethodName}();
313 313
                     }
314
-                }
315
-                else {
314
+                } else {
316 315
 
317 316
                     if($this->checkProperties('auto_generators_dont_overwrite')
318 317
                         && in_array($generator,$this->getAutoGeneratorsDontOverwrite())){
@@ -501,8 +500,7 @@  discard block
 block discarded – undo
501 500
                     $this->inputs[$key][]       = $keyMethod;
502 501
                     $this->requestData[$key][]  = $keyMethod;
503 502
                 }
504
-            }
505
-            else{
503
+            } else{
506 504
                 if(isset($this->inputs[$key])){
507 505
                     $keyMethod = $this->{$method}();
508 506
                     $this->inputs[$key] = $keyMethod;
Please login to merge, or discard this patch.