Completed
Push — master ( 1cbbc2...81bbed )
by Jan
03:20
created
src/Services/EntityImporter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -137,11 +137,11 @@
 block discarded – undo
137 137
         }
138 138
 
139 139
         //The [] behind class_name denotes that we expect an array.
140
-        $entities = $this->serializer->deserialize($content, $class_name . '[]', $options['format'],
140
+        $entities = $this->serializer->deserialize($content, $class_name.'[]', $options['format'],
141 141
             ['groups' => $groups, 'csv_delimiter' => $options['csv_separator']]);
142 142
 
143 143
         //Ensure we have an array of entitity elements.
144
-        if(!is_array($entities)) {
144
+        if (!is_array($entities)) {
145 145
             $entities = [$entities];
146 146
         }
147 147
 
Please login to merge, or discard this patch.