@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | return $this->proxyFactory->createProxy( |
49 | 49 | Schema::class, |
50 | - function (& $wrappedObject, $proxy, $method, array $parameters, & $initializer) use ($originalSchemaManipulator) { |
|
50 | + function(& $wrappedObject, $proxy, $method, array $parameters, & $initializer) use ($originalSchemaManipulator) { |
|
51 | 51 | $initializer = null; |
52 | 52 | $wrappedObject = $originalSchemaManipulator->createFromSchema(); |
53 | 53 | |
@@ -64,10 +64,10 @@ discard block |
||
64 | 64 | { |
65 | 65 | $originalSchemaManipulator = $this->originalSchemaManipulator; |
66 | 66 | |
67 | - if ($fromSchema instanceof LazyLoadingInterface && ! $fromSchema->isProxyInitialized()) { |
|
67 | + if ($fromSchema instanceof LazyLoadingInterface && !$fromSchema->isProxyInitialized()) { |
|
68 | 68 | return $this->proxyFactory->createProxy( |
69 | 69 | Schema::class, |
70 | - function (& $wrappedObject, $proxy, $method, array $parameters, & $initializer) use ($originalSchemaManipulator, $fromSchema) { |
|
70 | + function(& $wrappedObject, $proxy, $method, array $parameters, & $initializer) use ($originalSchemaManipulator, $fromSchema) { |
|
71 | 71 | $initializer = null; |
72 | 72 | $wrappedObject = $originalSchemaManipulator->createToSchema($fromSchema); |
73 | 73 | |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | { |
90 | 90 | if ( |
91 | 91 | $toSchema instanceof LazyLoadingInterface |
92 | - && ! $toSchema->isProxyInitialized() |
|
92 | + && !$toSchema->isProxyInitialized() |
|
93 | 93 | ) { |
94 | 94 | return []; |
95 | 95 | } |