Completed
Push — master ( 9d81ca...0fcc58 )
by Бабичев
08:02 queued 04:54
created
src/XMLReader/XMLReader.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -136,8 +136,7 @@  discard block
 block discarded – undo
136 136
             if ($properties) {
137 137
 
138 138
                 $data = \is_array($properties) ?
139
-                    $properties :
140
-                    $this->_asArray($properties);
139
+                    $properties : $this->_asArray($properties);
141 140
 
142 141
                 if ($data !== null || $data === '') {
143 142
                     $output['@' . $property] = $data;
@@ -342,7 +341,7 @@  discard block
 block discarded – undo
342 341
      */
343 342
     protected function fragments(array $storage): array
344 343
     {
345
-        Arr::walkRecursive($storage, function (&$value) {
344
+        Arr::walkRecursive($storage, function(&$value) {
346 345
             if (\is_object($value) && $value instanceof Raw) {
347 346
                 $value = $value->fragment($this->document());
348 347
             }
Please login to merge, or discard this patch.