Passed
Push — master ( b9affb...b0865c )
by Jonas
14:48 queued 32s
created
src/Schema/Grammars/CompilesViews.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,6 +57,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Schema/Builders/ManagesViews.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.