Test Setup Failed
Push — master ( e8b56d...29a8b0 )
by Php Easy Api
03:32
created
src/resta/Client/Client.php 2 patches
Spacing   +58 added lines, -58 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,30 +293,30 @@  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
                     $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
                     }
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
     {
364 364
         // we use the http method to write
365 365
         // the values to the inputs and origin properties.
366
-        foreach($this->clientData as $key=>$value){
366
+        foreach ($this->clientData as $key=>$value) {
367 367
 
368 368
             //inputs and origin properties
369 369
             $this->inputs[$key] = $value;
@@ -410,9 +410,9 @@  discard block
 block discarded – undo
410 410
 
411 411
         // we update the input values ​​after
412 412
         // we receive and check the saved objects.
413
-        foreach ($clientObjects as $key=>$value){
413
+        foreach ($clientObjects as $key=>$value) {
414 414
 
415
-            if(isset($clientObjects['origin'][$key])){
415
+            if (isset($clientObjects['origin'][$key])) {
416 416
 
417 417
                 $this->{$key} = $clientObjects['origin'][$key];
418 418
                 $this->inputs[$key] = $this->{$key};
@@ -439,11 +439,11 @@  discard block
 block discarded – undo
439 439
 
440 440
         // the request update to be performed using
441 441
         // the method name to be used with the http method.
442
-        $this->setRequestInputs($requestMethod,$key);
442
+        $this->setRequestInputs($requestMethod, $key);
443 443
 
444 444
         // the request update to be performed using
445 445
         // the method name to be used without the http method.
446
-        $this->setRequestInputs($key,$key);
446
+        $this->setRequestInputs($key, $key);
447 447
     }
448 448
 
449 449
     /**
@@ -454,20 +454,20 @@  discard block
 block discarded – undo
454 454
      *
455 455
      * @throws ReflectionExceptionAlias
456 456
      */
457
-    private function setRequestInputs($method,$key)
457
+    private function setRequestInputs($method, $key)
458 458
     {
459
-        if(method_exists($this,$method) && $this->reflection->reflectionMethodParams($method)->isProtected){
459
+        if (method_exists($this, $method) && $this->reflection->reflectionMethodParams($method)->isProtected) {
460 460
 
461 461
             //check annotations for method
462
-            $annotation = app()->resolve(ClientAnnotationManager::class,['request'=>$this]);
463
-            $annotation->annotation($method,$key);
462
+            $annotation = app()->resolve(ClientAnnotationManager::class, ['request'=>$this]);
463
+            $annotation->annotation($method, $key);
464 464
 
465
-            if(isset($this->inputs[$key]) && is_array($this->inputs[$key])){
465
+            if (isset($this->inputs[$key]) && is_array($this->inputs[$key])) {
466 466
 
467 467
                 $inputKeys = $this->inputs[$key];
468 468
 
469 469
                 $this->inputs[$key] = [];
470
-                foreach ($inputKeys as $input){
470
+                foreach ($inputKeys as $input) {
471 471
 
472 472
                     $this->{$key}               = $input;
473 473
                     $keyMethod                  = $this->{$method}();
@@ -475,8 +475,8 @@  discard block
 block discarded – undo
475 475
                     $this->requestData[$key][]  = $keyMethod;
476 476
                 }
477 477
             }
478
-            else{
479
-                if(isset($this->inputs[$key])){
478
+            else {
479
+                if (isset($this->inputs[$key])) {
480 480
                     $keyMethod = $this->{$method}();
481 481
                     $this->inputs[$key] = $keyMethod;
482 482
                     $this->requestData[$key] = $keyMethod;
@@ -495,8 +495,8 @@  discard block
 block discarded – undo
495 495
     {
496 496
         // the auto object validate property is the property
497 497
         // where all of your request values ​​are automatically validated.
498
-        if(property_exists($this,'autoObjectValidate')
499
-            && is_array($this->autoObjectValidate) && count($this->autoObjectValidate)){
498
+        if (property_exists($this, 'autoObjectValidate')
499
+            && is_array($this->autoObjectValidate) && count($this->autoObjectValidate)) {
500 500
             $this->autoValidate('autoObjectValidate');
501 501
         }
502 502
     }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -306,8 +306,7 @@  discard block
 block discarded – undo
306 306
                 if(!isset($this->inputs[$generator])){
307 307
                     $this->{$generator} = $this->{$generatorMethodName}();
308 308
                     $this->inputs[$generator] = $this->{$generatorMethodName}();
309
-                }
310
-                else {
309
+                } else {
311 310
 
312 311
                     if($this->checkProperties('auto_generators_dont_overwrite')
313 312
                         && in_array($generator,$this->getAutoGeneratorsDontOverwrite())){
@@ -474,8 +473,7 @@  discard block
 block discarded – undo
474 473
                     $this->inputs[$key][]       = $keyMethod;
475 474
                     $this->requestData[$key][]  = $keyMethod;
476 475
                 }
477
-            }
478
-            else{
476
+            } else{
479 477
                 if(isset($this->inputs[$key])){
480 478
                     $keyMethod = $this->{$method}();
481 479
                     $this->inputs[$key] = $keyMethod;
Please login to merge, or discard this patch.