Passed
Push — dev ( a6e042...0ee1b7 )
by Marcin
07:54
created
src/ResponseBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
 		$data = (new Converter())->convert($data);
353 353
 		if ($data !== null && !\is_object($data)) {
354 354
 			// ensure we get object in final JSON structure in data node
355
-			$data = (object)$data;
355
+			$data = (object) $data;
356 356
 		}
357 357
 
358 358
 		// get human readable message for API code or use message string (if given instead of API code)
@@ -374,7 +374,7 @@  discard block
 block discarded – undo
374 374
 
375 375
 		if ($debug_data !== null) {
376 376
 			$debug_key = Config::get(ResponseBuilder::CONF_KEY_DEBUG_DEBUG_KEY, ResponseBuilder::KEY_DEBUG);
377
-			$response[ $debug_key ] = $debug_data;
377
+			$response[$debug_key] = $debug_data;
378 378
 		}
379 379
 
380 380
 		return $response;
Please login to merge, or discard this patch.
src/Converter.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -66,12 +66,12 @@  discard block
 block discarded – undo
66 66
         // check for exact class name match...
67 67
         $cls = \get_class($data);
68 68
         if (\array_key_exists($cls, $this->classes)) {
69
-            $result = $this->classes[ $cls ];
69
+            $result = $this->classes[$cls];
70 70
         } else {
71 71
             // no exact match, then lets try with `instanceof`
72 72
             foreach (\array_keys($this->getClasses()) as $class_name) {
73 73
                 if ($data instanceof $class_name) {
74
-                    $result = $this->classes[ $class_name ];
74
+                    $result = $this->classes[$class_name];
75 75
                     break;
76 76
                 }
77 77
             }
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 
105 105
         if (\is_object($data)) {
106 106
             $cfg = $this->getClassMappingConfigOrThrow($data);
107
-            $worker = new $cfg[ ResponseBuilder::KEY_HANDLER ]();
107
+            $worker = new $cfg[ResponseBuilder::KEY_HANDLER]();
108 108
             $data = $worker->convert($data, $cfg);
109 109
         } else {
110 110
             $data = $this->convertArray($data);
@@ -146,12 +146,12 @@  discard block
 block discarded – undo
146 146
 
147 147
         foreach ($data as $key => $val) {
148 148
             if (\is_array($val)) {
149
-                $data[ $key ] = $this->convertArray($val);
149
+                $data[$key] = $this->convertArray($val);
150 150
             } elseif (\is_object($val)) {
151 151
                 $cfg = $this->getClassMappingConfigOrThrow($val);
152
-                $worker = new $cfg[ ResponseBuilder::KEY_HANDLER ]();
152
+                $worker = new $cfg[ResponseBuilder::KEY_HANDLER]();
153 153
                 $converted_data = $worker->convert($val, $cfg);
154
-                $data[ $key ] = $converted_data;
154
+                $data[$key] = $converted_data;
155 155
             }
156 156
         }
157 157
 
Please login to merge, or discard this patch.
src/Util.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -34,20 +34,20 @@
 block discarded – undo
34 34
         $array = $original;
35 35
         foreach ($merging as $m_key => $m_val) {
36 36
             if (\array_key_exists($m_key, $original)) {
37
-                $orig_type = \gettype($original[ $m_key ]);
37
+                $orig_type = \gettype($original[$m_key]);
38 38
                 $m_type = \gettype($m_val);
39 39
                 if ($orig_type !== $m_type) {
40 40
                     throw new \RuntimeException(
41 41
                         "Incompatible types. Cannot merge {$m_type} into {$orig_type} (key '{$m_key}').");
42 42
                 }
43 43
 
44
-                if (\is_array($merging[ $m_key ])) {
45
-                    $array[ $m_key ] = static::mergeConfig($original[ $m_key ], $m_val);
44
+                if (\is_array($merging[$m_key])) {
45
+                    $array[$m_key] = static::mergeConfig($original[$m_key], $m_val);
46 46
                 } else {
47
-                    $array[ $m_key ] = $m_val;
47
+                    $array[$m_key] = $m_val;
48 48
                 }
49 49
             } else {
50
-                $array[ $m_key ] = $m_val;
50
+                $array[$m_key] = $m_val;
51 51
             }
52 52
         }
53 53
 
Please login to merge, or discard this patch.