@@ -22,7 +22,7 @@ |
||
| 22 | 22 | */ |
| 23 | 23 | public function map(Fluent $builder) |
| 24 | 24 | { |
| 25 | - $builder->integer('id')->unsigned()->primary()->generatedValue(function (GeneratedValue $builder) { |
|
| 25 | + $builder->integer('id')->unsigned()->primary()->generatedValue(function(GeneratedValue $builder) { |
|
| 26 | 26 | $builder->identity(); |
| 27 | 27 | }); |
| 28 | 28 | $builder->integer('depth'); |
@@ -39,7 +39,7 @@ |
||
| 39 | 39 | /** @var Buildable[] $queued */ |
| 40 | 40 | $queued = $this->getQueued(); |
| 41 | 41 | |
| 42 | - usort($queued, function (Buildable $buildable) { |
|
| 42 | + usort($queued, function(Buildable $buildable) { |
|
| 43 | 43 | return $buildable instanceof Delay ? 1 : 0; |
| 44 | 44 | }); |
| 45 | 45 | |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | */ |
| 35 | 35 | public static function enable() |
| 36 | 36 | { |
| 37 | - Builder::macro(self::MACRO_METHOD, function (Fluent $builder, callable $callback = null) { |
|
| 37 | + Builder::macro(self::MACRO_METHOD, function(Fluent $builder, callable $callback = null) { |
|
| 38 | 38 | $tree = new static($builder); |
| 39 | 39 | |
| 40 | 40 | if (is_callable($callback)) { |