@@ -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 | } |