@@ -14,7 +14,7 @@ |
||
14 | 14 | */ |
15 | 15 | public function register() |
16 | 16 | { |
17 | - $this->app->bind(Schema::class, function ($app) { |
|
17 | + $this->app->bind(Schema::class, function($app) { |
|
18 | 18 | return Schema::getSchemaBuilder( |
19 | 19 | $app['db']->connection() |
20 | 20 | ); |
@@ -57,6 +57,6 @@ |
||
57 | 57 | */ |
58 | 58 | public function compileRefreshMaterializedView(string $name): string |
59 | 59 | { |
60 | - return 'refresh materialized view ' . $this->wrapTable($name); |
|
60 | + return 'refresh materialized view '.$this->wrapTable($name); |
|
61 | 61 | } |
62 | 62 | } |
@@ -48,7 +48,7 @@ |
||
48 | 48 | * @param array|null $columns |
49 | 49 | * @return void |
50 | 50 | */ |
51 | - public function createMaterializedView(string $name, EloquentBuilder|QueryBuilder $query, array $columns = null): void |
|
51 | + public function createMaterializedView(string $name, EloquentBuilder | QueryBuilder $query, array $columns = null): void |
|
52 | 52 | { |
53 | 53 | $this->createView($name, $query, $columns, materialized: true); |
54 | 54 | } |