@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | */ |
| 94 | 94 | protected function createCoreFunction(Closure $core): Closure |
| 95 | 95 | { |
| 96 | - return function ($object) use ($core) { |
|
| 96 | + return function($object) use ($core) { |
|
| 97 | 97 | return $core($object); |
| 98 | 98 | }; |
| 99 | 99 | } |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | */ |
| 109 | 109 | protected function createLayer(Closure $nextLayer, ILayer $layer): Closure |
| 110 | 110 | { |
| 111 | - return function ($object) use ($nextLayer, $layer) { |
|
| 111 | + return function($object) use ($nextLayer, $layer) { |
|
| 112 | 112 | return $layer->peel($object, $nextLayer); |
| 113 | 113 | }; |
| 114 | 114 | } |