| @@ -29,7 +29,7 @@ discard block | ||
| 29 | 29 | /** | 
| 30 | 30 | * @var string Path to graphql schema file | 
| 31 | 31 | */ | 
| 32 | - private const GRAPHQL_DATETIME = __DIR__ . '/../resources/datetime.graphqls'; | |
| 32 | + private const GRAPHQL_DATETIME = __DIR__.'/../resources/datetime.graphqls'; | |
| 33 | 33 | |
| 34 | 34 | /** | 
| 35 | 35 | * @param Compiler $compiler | 
| @@ -51,7 +51,7 @@ discard block | ||
| 51 | 51 |      { | 
| 52 | 52 | $controller = $this->make(CarbonController::class); | 
| 53 | 53 | |
| 54 | -        $invoke = function (TypeBuilding $event) use ($compiler, $router, $controller): void { | |
| 54 | +        $invoke = function(TypeBuilding $event) use ($compiler, $router, $controller): void { | |
| 55 | 55 |              if ($this->isCarbonField($event->getType())) { | 
| 56 | 56 | $this->extend($compiler, $event->getType()); | 
| 57 | 57 | |
| @@ -78,7 +78,7 @@ discard block | ||
| 78 | 78 | */ | 
| 79 | 79 | private function extend(Compiler $compiler, FieldDefinition $field): void | 
| 80 | 80 |      { | 
| 81 | -        (function () use ($field, $compiler): void { | |
| 81 | +        (function() use ($field, $compiler): void { | |
| 82 | 82 | $this->arguments[FormatArgument::ARGUMENT_NAME] = new FormatArgument($field, $compiler); | 
| 83 | 83 | })->call($field); | 
| 84 | 84 | } |