@@ -32,7 +32,7 @@ |
||
| 32 | 32 | protected function addKernelFacade( |
| 33 | 33 | DependencyContainerInterface $container |
| 34 | 34 | ): DependencyContainerInterface { |
| 35 | - $container[self::KERNEL_FACADE] = function (DependencyContainerInterface $container) { |
|
| 35 | + $container[self::KERNEL_FACADE] = function(DependencyContainerInterface $container) { |
|
| 36 | 36 | return $container->getLocator()->kernel()->facade(); |
| 37 | 37 | }; |
| 38 | 38 | |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | { |
| 51 | 51 | return array_filter( |
| 52 | 52 | $response, |
| 53 | - function ($value) { |
|
| 53 | + function($value) { |
|
| 54 | 54 | return $value{0} !== '_'; |
| 55 | 55 | }, |
| 56 | 56 | ARRAY_FILTER_USE_KEY |