Test Setup Failed
Push — master ( 178ad4...cb1087 )
by Php Easy Api
03:57
created
src/resta/Url/UrlProvider.php 2 patches
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * @var array $urlNames
23 23
      */
24
-    protected $urlNames = ['project','version','endpoint','method'];
24
+    protected $urlNames = ['project', 'version', 'endpoint', 'method'];
25 25
 
26 26
     /**
27 27
      * assign url list
@@ -39,25 +39,25 @@  discard block
 block discarded – undo
39 39
         // it will be formatted.
40 40
         $query = $this->queryFormatProcess($query);
41 41
 
42
-        foreach ($query as $key=>$value){
42
+        foreach ($query as $key=>$value) {
43 43
 
44 44
             //set url list for urlNames property
45
-            if(isset($this->urlNames[$key])){
46
-                $this->getUrlListValues($key,$value);
45
+            if (isset($this->urlNames[$key])) {
46
+                $this->getUrlListValues($key, $value);
47 47
             }
48 48
         }
49 49
 
50 50
         // If there is no method key in the urlList property,
51 51
         // then by default we assign the index to the method property.
52
-        if(!isset($this->urlList['method'])){
52
+        if (!isset($this->urlList['method'])) {
53 53
             $this->urlList['method'] = 'index';
54 54
         }
55 55
 
56 56
         //determines the endpoint method for your project
57
-        $this->urlList['parameters'] = array_slice($query,3);
57
+        $this->urlList['parameters'] = array_slice($query, 3);
58 58
 
59 59
         //url global instance
60
-        if($this->app->has('routeParameters')===false){
60
+        if ($this->app->has('routeParameters')===false) {
61 61
             $this->definitor($this->urlList);
62 62
         }
63 63
     }
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
         //convert array for query
76 76
         //we are removing the first empty element from the array due to the slash sign.
77
-        if(is_null($this->path)){
77
+        if (is_null($this->path)) {
78 78
             $query = $this->getRequestPathInfo();
79 79
         }
80 80
 
@@ -96,13 +96,13 @@  discard block
 block discarded – undo
96 96
      */
97 97
     public function definitor($urlList)
98 98
     {
99
-        define('version',$urlList['version']);
100
-        define('endpoint',$urlList['endpoint']);
101
-        define('app',$urlList['project']);
102
-        define('method',$urlList['method']);
99
+        define('version', $urlList['version']);
100
+        define('endpoint', $urlList['endpoint']);
101
+        define('app', $urlList['project']);
102
+        define('method', $urlList['method']);
103 103
 
104 104
         //route parameters kernel object register
105
-        $this->app->register('routeParameters',$urlList['parameters']);
105
+        $this->app->register('routeParameters', $urlList['parameters']);
106 106
     }
107 107
 
108 108
     /**
@@ -121,12 +121,12 @@  discard block
 block discarded – undo
121 121
      * @param array $path
122 122
      * @return array
123 123
      */
124
-    public function getRequestPathInfo($path=array())
124
+    public function getRequestPathInfo($path = array())
125 125
     {
126
-        if(count($path)){
126
+        if (count($path)) {
127 127
             $this->path = $path;
128 128
         }
129
-        else{
129
+        else {
130 130
             return Utils::getRequestPathInfo();
131 131
         }
132 132
     }
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      * @param $key
138 138
      * @param $value
139 139
      */
140
-    private function getUrlListValues($key,$value)
140
+    private function getUrlListValues($key, $value)
141 141
     {
142 142
         //If the value from the url is an external value, the default format is applied.
143 143
         $this->urlList[$this->urlNames[$key]] = (strlen($value)>0) ? $value : null;
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
         $this->assignUrlList();
157 157
 
158 158
         //register to container urlComponent value
159
-        $this->app->register('urlComponent',$this->urlList);
159
+        $this->app->register('urlComponent', $this->urlList);
160 160
 
161 161
         //we make url parse resolving with resolved
162 162
         return (new UrlParseParamResolved)->urlParamResolve($this);
@@ -172,20 +172,20 @@  discard block
 block discarded – undo
172 172
     {
173 173
         // at urlNames property,
174 174
         // we get the key of the version value registered.
175
-        $versionKey = array_search('version',$this->urlNames);
175
+        $versionKey = array_search('version', $this->urlNames);
176 176
 
177 177
         // if the query array has a version key,
178 178
         // and the value does not start with Vnumber, the version will definitely be formatted.
179
-        if(isset($query[$versionKey]) && !preg_match('@V(\d+)@',$query[$versionKey])){
180
-            $query = Arr::overwriteWith($query,[$versionKey=>'V1']);
179
+        if (isset($query[$versionKey]) && !preg_match('@V(\d+)@', $query[$versionKey])) {
180
+            $query = Arr::overwriteWith($query, [$versionKey=>'V1']);
181 181
         }
182
-        else{
182
+        else {
183 183
 
184
-            if(!isset($query[$versionKey])){
184
+            if (!isset($query[$versionKey])) {
185 185
                 $query[$versionKey] = 'V1';
186 186
             }
187 187
 
188
-            if(!isset($query[$versionKey+1])){
188
+            if (!isset($query[$versionKey+1])) {
189 189
                 $query[$versionKey+1] = NULL;
190 190
             }
191 191
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -125,8 +125,7 @@  discard block
 block discarded – undo
125 125
     {
126 126
         if(count($path)){
127 127
             $this->path = $path;
128
-        }
129
-        else{
128
+        } else{
130 129
             return Utils::getRequestPathInfo();
131 130
         }
132 131
     }
@@ -178,8 +177,7 @@  discard block
 block discarded – undo
178 177
         // and the value does not start with Vnumber, the version will definitely be formatted.
179 178
         if(isset($query[$versionKey]) && !preg_match('@V(\d+)@',$query[$versionKey])){
180 179
             $query = Arr::overwriteWith($query,[$versionKey=>'V1']);
181
-        }
182
-        else{
180
+        } else{
183 181
 
184 182
             if(!isset($query[$versionKey])){
185 183
                 $query[$versionKey] = 'V1';
Please login to merge, or discard this patch.
src/resta/Response/ResponseOutput.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -18,10 +18,10 @@  discard block
 block discarded – undo
18 18
      */
19 19
     private function dataIncludedForPrinter($printer)
20 20
     {
21
-        if(isset(core()->controllerWatch)){
21
+        if (isset(core()->controllerWatch)) {
22 22
 
23
-            $watch=core()->controllerWatch;
24
-            return array_merge($printer,['watch'=>['memory'=>$watch['memory']]]);
23
+            $watch = core()->controllerWatch;
24
+            return array_merge($printer, ['watch'=>['memory'=>$watch['memory']]]);
25 25
         }
26 26
 
27 27
         //return printer
@@ -48,9 +48,9 @@  discard block
 block discarded – undo
48 48
      * @param array $data
49 49
      * @return array
50 50
      */
51
-    private function hateoasCapsule($data=array())
51
+    private function hateoasCapsule($data = array())
52 52
     {
53
-        return (config('app.hateoas')) ? array_merge($data,config('hateoas')) : $data;
53
+        return (config('app.hateoas')) ? array_merge($data, config('hateoas')) : $data;
54 54
     }
55 55
 
56 56
     /**
@@ -66,9 +66,9 @@  discard block
 block discarded – undo
66 66
      * @param callable $callback
67 67
      * @return mixed
68 68
      */
69
-    private function noInExceptionHateoas($output,callable $callback)
69
+    private function noInExceptionHateoas($output, callable $callback)
70 70
     {
71
-        if(isset($output['success']) && false===$output['success']){
71
+        if (isset($output['success']) && false===$output['success']) {
72 72
             return $output;
73 73
         }
74 74
         return call_user_func($callback);
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     {
96 96
         //if the system throws an exception,
97 97
         //we subtract the hateoas extension from the output value.
98
-        $this->printer = $this->noInExceptionHateoas($output,function() use ($output){
98
+        $this->printer = $this->noInExceptionHateoas($output, function() use ($output){
99 99
 
100 100
             return array_merge(
101 101
                 $this->metaAdd(),
@@ -105,16 +105,16 @@  discard block
 block discarded – undo
105 105
 
106 106
         // For the data to be included in the response,
107 107
         // we go to the dataIncludedForPrinter method.
108
-        $this->printer=$this->dataIncludedForPrinter($this->printer);
108
+        $this->printer = $this->dataIncludedForPrinter($this->printer);
109 109
 
110 110
         // If the log feature is available on the kernel,
111 111
         // we run the logger process.
112
-        if(isset(core()->log)){
112
+        if (isset(core()->log)) {
113 113
 
114 114
             // we can run logging after checking
115 115
             // the configuration for the logger process in the LoggerService class
116 116
             // so that,If logging is not allowed in the main configuration file, we will not log.
117
-            return core()->loggerService->checkLoggerConfiguration($this->printer,function($printer){
117
+            return core()->loggerService->checkLoggerConfiguration($this->printer, function($printer) {
118 118
                 return $printer;
119 119
             });
120 120
         }
Please login to merge, or discard this patch.
src/resta/Response/ResponseProvider.php 1 patch
Spacing   +6 added lines, -7 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
         //the auto service to be called.
28 28
         return ClosureDispatcher::bind($controllerInstance)->call(function() use($controllerInstance){
29 29
 
30
-            if(property_exists($controllerInstance,'response')){
30
+            if (property_exists($controllerInstance, 'response')) {
31 31
                 return $controllerInstance->response;
32 32
             }
33 33
 
@@ -68,8 +68,7 @@  discard block
 block discarded – undo
68 68
     {
69 69
         //we get the response type by checking the instanceController object from the router.
70 70
         //Each type of response is in the base class in project directory.
71
-        return ($this->getControllerInstance()===null) ? core()->responseType :
72
-            $this->appResponseType();
71
+        return ($this->getControllerInstance()===null) ? core()->responseType : $this->appResponseType();
73 72
     }
74 73
 
75 74
     /**
@@ -80,19 +79,19 @@  discard block
 block discarded – undo
80 79
     public function handle()
81 80
     {
82 81
         //definition for singleton instance
83
-        define ('responseApp',true);
82
+        define('responseApp', true);
84 83
 
85 84
         //get out putter for response
86 85
         $formatter = $this->formatter();
87 86
 
88 87
         //if out putter is not null
89
-        if(Utils::isNamespaceExists($formatter)){
88
+        if (Utils::isNamespaceExists($formatter)) {
90 89
 
91 90
             //We resolve the response via the service container
92 91
             //and run the handle method.
93 92
             $result = app()->resolve($formatter)->{$this->getResponseKind()}($this->getOutPutter());
94 93
 
95
-            $this->app->register('result',$result);
94
+            $this->app->register('result', $result);
96 95
         }
97 96
     }
98 97
 
@@ -102,7 +101,7 @@  discard block
 block discarded – undo
102 101
      * @param array $data
103 102
      * @return array
104 103
      */
105
-    public function outputFormatter($data=array())
104
+    public function outputFormatter($data = array())
106 105
     {
107 106
         $dataCapsule = config('response.data');
108 107
 
Please login to merge, or discard this patch.
src/resta/Response/Outputter/XmlOutputter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
      * @param $outputter
11 11
      * @return string
12 12
      */
13
-    public function handle($outputter){
13
+    public function handle($outputter) {
14 14
 
15 15
         header('Content-type:application/xml;charset=utf-8');
16 16
         return ArrayToXml::convert($outputter);
Please login to merge, or discard this patch.
src/resta/Response/Outputter/JsonOutputter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
      * @param $outputter
11 11
      * @return string
12 12
      */
13
-    public function handle($outputter){
13
+    public function handle($outputter) {
14 14
 
15 15
         //header set and symfony response call
16 16
         header('Content-type:application/json;charset=utf-8');
Please login to merge, or discard this patch.
src/resta/Response/ResponseOutManager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
      */
16 16
     public function __construct($app)
17 17
     {
18
-        $this->app=$app;
18
+        $this->app = $app;
19 19
     }
20 20
 
21 21
     /**
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      */
24 24
     public function json()
25 25
     {
26
-        $this->app->response='json';
26
+        $this->app->response = 'json';
27 27
     }
28 28
 
29 29
     /**
@@ -31,6 +31,6 @@  discard block
 block discarded – undo
31 31
      */
32 32
     public function xml()
33 33
     {
34
-        $this->app->response='xml';
34
+        $this->app->response = 'xml';
35 35
     }
36 36
 }
37 37
\ No newline at end of file
Please login to merge, or discard this patch.
src/resta/Support/ClassAliasGroup.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -7,32 +7,32 @@
 block discarded – undo
7 7
     /**
8 8
      * @return mixed
9 9
      */
10
-   public function handle()
11
-   {
12
-       return $this->getConfigAliasGroup();
13
-   }
10
+    public function handle()
11
+    {
12
+        return $this->getConfigAliasGroup();
13
+    }
14 14
 
15 15
     /**
16 16
      * @return array
17 17
      */
18
-   public function getConfigAliasGroup()
19
-   {
20
-       $aliasGroup=app()->namespace()->config().'\AliasGroup';
21
-       if(class_exists($aliasGroup)){
22
-           return app()->resolve($aliasGroup)->handle();
23
-       }
24
-       return [];
25
-   }
18
+    public function getConfigAliasGroup()
19
+    {
20
+        $aliasGroup=app()->namespace()->config().'\AliasGroup';
21
+        if(class_exists($aliasGroup)){
22
+            return app()->resolve($aliasGroup)->handle();
23
+        }
24
+        return [];
25
+    }
26 26
 
27 27
     /**
28 28
      * @param $object
29 29
      * @param $name
30 30
      * @return void
31 31
      */
32
-   public static function setAlias($object,$name)
33
-   {
34
-       if((new $object) instanceof  $name === false){
35
-           class_alias($object,$name);
36
-       }
37
-   }
32
+    public static function setAlias($object,$name)
33
+    {
34
+        if((new $object) instanceof  $name === false){
35
+            class_alias($object,$name);
36
+        }
37
+    }
38 38
 }
39 39
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@  discard block
 block discarded – undo
17 17
      */
18 18
    public function getConfigAliasGroup()
19 19
    {
20
-       $aliasGroup=app()->namespace()->config().'\AliasGroup';
21
-       if(class_exists($aliasGroup)){
20
+       $aliasGroup = app()->namespace()->config().'\AliasGroup';
21
+       if (class_exists($aliasGroup)) {
22 22
            return app()->resolve($aliasGroup)->handle();
23 23
        }
24 24
        return [];
@@ -29,10 +29,10 @@  discard block
 block discarded – undo
29 29
      * @param $name
30 30
      * @return void
31 31
      */
32
-   public static function setAlias($object,$name)
32
+   public static function setAlias($object, $name)
33 33
    {
34
-       if((new $object) instanceof  $name === false){
35
-           class_alias($object,$name);
34
+       if ((new $object) instanceof  $name===false) {
35
+           class_alias($object, $name);
36 36
        }
37 37
    }
38 38
 }
39 39
\ No newline at end of file
Please login to merge, or discard this patch.
src/resta/Support/AppData/ServiceMiddlewareManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     public function exclude()
32 32
     {
33 33
         return [
34
-            'all'=>['hook','login','logout']
34
+            'all'=>['hook', 'login', 'logout']
35 35
         ];
36 36
     }
37 37
 }
Please login to merge, or discard this patch.
src/resta/Support/Arr.php 1 patch
Spacing   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
         foreach ($array as $values) {
46 46
             if ($values instanceof Collection) {
47 47
                 $values = $values->all();
48
-            } elseif (! is_array($values)) {
48
+            } elseif (!is_array($values)) {
49 49
                 continue;
50 50
             }
51 51
             $results = array_merge($results, $values);
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     {
95 95
         $results = [];
96 96
         foreach ($array as $key => $value) {
97
-            if (is_array($value) && ! empty($value)) {
97
+            if (is_array($value) && !empty($value)) {
98 98
                 $results = array_merge($results, static::dot($value, $prepend.$key.'.'));
99 99
             } else {
100 100
                 $results[$prepend.$key] = $value;
@@ -180,12 +180,12 @@  discard block
 block discarded – undo
180 180
         $result = [];
181 181
         foreach ($array as $item) {
182 182
             $item = $item instanceof Collection ? $item->all() : $item;
183
-            if (! is_array($item)) {
183
+            if (!is_array($item)) {
184 184
                 $result[] = $item;
185
-            } elseif ($depth === 1) {
185
+            } elseif ($depth===1) {
186 186
                 $result = array_merge($result, array_values($item));
187 187
             } else {
188
-                $result = array_merge($result, static::flatten($item, $depth - 1));
188
+                $result = array_merge($result, static::flatten($item, $depth-1));
189 189
             }
190 190
         }
191 191
         return $result;
@@ -200,8 +200,8 @@  discard block
 block discarded – undo
200 200
     public static function forget(&$array, $keys)
201 201
     {
202 202
         $original = &$array;
203
-        $keys = (array) $keys;
204
-        if (count($keys) === 0) {
203
+        $keys = (array)$keys;
204
+        if (count($keys)===0) {
205 205
             return;
206 206
         }
207 207
         foreach ($keys as $key) {
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
             $parts = explode('.', $key);
214 214
             // clean up before each pass
215 215
             $array = &$original;
216
-            while (count($parts) > 1) {
216
+            while (count($parts)>1) {
217 217
                 $part = array_shift($parts);
218 218
                 if (isset($array[$part]) && is_array($array[$part])) {
219 219
                     $array = &$array[$part];
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
      */
235 235
     public static function get($array, $key, $default = null)
236 236
     {
237
-        if (! static::accessible($array)) {
237
+        if (!static::accessible($array)) {
238 238
             return value($default);
239 239
         }
240 240
         if (is_null($key)) {
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
         if (static::exists($array, $key)) {
244 244
             return $array[$key];
245 245
         }
246
-        if (strpos($key, '.') === false) {
246
+        if (strpos($key, '.')===false) {
247 247
             return $array[$key] ?? value($default);
248 248
         }
249 249
         foreach (explode('.', $key) as $segment) {
@@ -267,11 +267,11 @@  discard block
 block discarded – undo
267 267
         if (is_null($keys)) {
268 268
             return false;
269 269
         }
270
-        $keys = (array) $keys;
271
-        if (! $array) {
270
+        $keys = (array)$keys;
271
+        if (!$array) {
272 272
             return false;
273 273
         }
274
-        if ($keys === []) {
274
+        if ($keys===[]) {
275 275
             return false;
276 276
         }
277 277
         foreach ($keys as $key) {
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
     public static function isAssoc(array $array)
301 301
     {
302 302
         $keys = array_keys($array);
303
-        return array_keys($keys) !== $keys;
303
+        return array_keys($keys)!==$keys;
304 304
     }
305 305
     /**
306 306
      * Get a subset of the items from the given array.
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
      */
312 312
     public static function only($array, $keys)
313 313
     {
314
-        return array_intersect_key($array, array_flip((array) $keys));
314
+        return array_intersect_key($array, array_flip((array)$keys));
315 315
     }
316 316
     /**
317 317
      * Pluck an array of values from an array.
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
             } else {
336 336
                 $itemKey = data_get($item, $key);
337 337
                 if (is_object($itemKey) && method_exists($itemKey, '__toString')) {
338
-                    $itemKey = (string) $itemKey;
338
+                    $itemKey = (string)$itemKey;
339 339
                 }
340 340
                 $results[$itemKey] = $itemValue;
341 341
             }
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
         if (is_null($key)) {
369 369
             array_unshift($array, $value);
370 370
         } else {
371
-            $array = [$key => $value] + $array;
371
+            $array = [$key => $value]+$array;
372 372
         }
373 373
         return $array;
374 374
     }
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
     {
400 400
         $requested = is_null($number) ? 1 : $number;
401 401
         $count = count($array);
402
-        if ($requested > $count) {
402
+        if ($requested>$count) {
403 403
             throw new InvalidArgumentException(
404 404
                 "You requested {$requested} items, but there are only {$count} items available."
405 405
             );
@@ -407,12 +407,12 @@  discard block
 block discarded – undo
407 407
         if (is_null($number)) {
408 408
             return $array[array_rand($array)];
409 409
         }
410
-        if ((int) $number === 0) {
410
+        if ((int)$number===0) {
411 411
             return [];
412 412
         }
413 413
         $keys = array_rand($array, $number);
414 414
         $results = [];
415
-        foreach ((array) $keys as $key) {
415
+        foreach ((array)$keys as $key) {
416 416
             $results[] = $array[$key];
417 417
         }
418 418
         return $results;
@@ -433,12 +433,12 @@  discard block
 block discarded – undo
433 433
             return $array = $value;
434 434
         }
435 435
         $keys = explode('.', $key);
436
-        while (count($keys) > 1) {
436
+        while (count($keys)>1) {
437 437
             $key = array_shift($keys);
438 438
             // If the key doesn't exist at this depth, we will just create an empty array
439 439
             // to hold the next value, allowing us to create the arrays to hold final
440 440
             // values at the correct depth. Then we'll keep digging into the array.
441
-            if (! isset($array[$key]) || ! is_array($array[$key])) {
441
+            if (!isset($array[$key]) || !is_array($array[$key])) {
442 442
                 $array[$key] = [];
443 443
             }
444 444
             $array = &$array[$key];
@@ -459,7 +459,7 @@  discard block
 block discarded – undo
459 459
             shuffle($array);
460 460
         } else {
461 461
             srand($seed);
462
-            usort($array, function () {
462
+            usort($array, function() {
463 463
                 return rand(-1, 1);
464 464
             });
465 465
         }
@@ -536,16 +536,16 @@  discard block
 block discarded – undo
536 536
      * @param array $referenceArray
537 537
      * @return array
538 538
      */
539
-    public static function removeSameValues($removeArray=array(),$referenceArray=array())
539
+    public static function removeSameValues($removeArray = array(), $referenceArray = array())
540 540
     {
541 541
         $list = [];
542 542
 
543
-        foreach ($removeArray as $remove){
544
-            if(!in_array($remove,$referenceArray)){
545
-                $list[]=$remove;
543
+        foreach ($removeArray as $remove) {
544
+            if (!in_array($remove, $referenceArray)) {
545
+                $list[] = $remove;
546 546
             }
547 547
         }
548
-        return array_merge($referenceArray,$list);
548
+        return array_merge($referenceArray, $list);
549 549
     }
550 550
 
551 551
     /**
@@ -553,9 +553,9 @@  discard block
 block discarded – undo
553 553
      * @param $key
554 554
      * @return null
555 555
      */
556
-    public static function isset($array,$key)
556
+    public static function isset($array, $key)
557 557
     {
558
-        if(isset($array[$key])){
558
+        if (isset($array[$key])) {
559 559
             return $array[$key];
560 560
         }
561 561
         return null;
@@ -566,13 +566,13 @@  discard block
 block discarded – undo
566 566
      * @param null $withKey
567 567
      * @return bool
568 568
      */
569
-    public static function isArrayWithCount($array,$withKey=null)
569
+    public static function isArrayWithCount($array, $withKey = null)
570 570
     {
571
-        if($withKey===null){
571
+        if ($withKey===null) {
572 572
             return is_array($array) && count($array);
573 573
         }
574 574
 
575
-        return isset($array[$withKey]) && self::isArrayWithCount($array[$withKey],null);
575
+        return isset($array[$withKey]) && self::isArrayWithCount($array[$withKey], null);
576 576
     }
577 577
 
578 578
     /**
@@ -580,12 +580,12 @@  discard block
 block discarded – undo
580 580
      * @param $array2
581 581
      * @return int
582 582
      */
583
-    public static function arrayDiffKey($array1,$array2)
583
+    public static function arrayDiffKey($array1, $array2)
584 584
     {
585
-        $forArray1 = array_diff_key($array1,$array2);
586
-        $forArray2 = array_diff_key($array2,$array1);
585
+        $forArray1 = array_diff_key($array1, $array2);
586
+        $forArray2 = array_diff_key($array2, $array1);
587 587
 
588
-        if(count($forArray1)=="0" && count($forArray2)=="0"){
588
+        if (count($forArray1)=="0" && count($forArray2)=="0") {
589 589
             return true;
590 590
         }
591 591
         return false;
@@ -597,12 +597,12 @@  discard block
 block discarded – undo
597 597
      * @param $original
598 598
      * @param array $overwrite
599 599
      */
600
-    public static function overwriteWith($original,$overwrite=array())
600
+    public static function overwriteWith($original, $overwrite = array())
601 601
     {
602
-        foreach ($original as $key=>$item){
602
+        foreach ($original as $key=>$item) {
603 603
 
604
-            if(array_key_exists($key,$overwrite)){
605
-                array_splice($original,$key,0,$overwrite[$key]);
604
+            if (array_key_exists($key, $overwrite)) {
605
+                array_splice($original, $key, 0, $overwrite[$key]);
606 606
             }
607 607
         }
608 608
 
Please login to merge, or discard this patch.