Passed
Push — master ( 9efb55...b39e63 )
by Jonas
22:14 queued 08:56
created
src/DatabaseServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
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
             );
Please login to merge, or discard this patch.
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.