Completed
Push — master ( f9e0c8...bdc56b )
by Julien
12s
created
src/SdkClient.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -211,8 +211,8 @@  discard block
 block discarded – undo
211 211
             $factory = new LazyLoadingGhostFactory();
212 212
         }
213 213
 
214
-        $initializer = function (
215
-            LazyLoadingInterface &$proxy,
214
+        $initializer = function(
215
+            LazyLoadingInterface&$proxy,
216 216
             $method,
217 217
             array $parameters,
218 218
             & $initializer
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
             $id
223 223
         ) {
224 224
             if ($method !== 'getId' && $method !== 'setId' && $method !== 'jsonSerialize') {
225
-                $initializer   = null; // disable initialization
225
+                $initializer = null; // disable initialization
226 226
                 // load data and modify the object here
227 227
                 if ($id) {
228 228
                     $repository = $sdk->getRepository($classMetadata->getModelName());
Please login to merge, or discard this patch.
src/EntityRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -262,7 +262,7 @@
 block discarded – undo
262 262
         $mapping = $this->sdk->getMapping();
263 263
 
264 264
         return array_map(
265
-            function ($item) use ($mapping) {
265
+            function($item) use ($mapping) {
266 266
                 if (is_object($item)) {
267 267
                     $classname = get_class($item);
268 268
 
Please login to merge, or discard this patch.