Passed
Push — main ( af1024...b746de )
by Thierry
02:04
created
src/Db/DatabaseInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
      *
115 115
      * @return array
116 116
      */
117
-    public function userTypes() ;
117
+    public function userTypes();
118 118
 
119 119
     /**
120 120
      * Get existing schemas
Please login to merge, or discard this patch.
src/Db/ServerInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      *
66 66
      * @return boolean
67 67
      */
68
-    public function createDatabase(string $database, string $collation) ;
68
+    public function createDatabase(string $database, string $collation);
69 69
 
70 70
     /**
71 71
      * Drop databases
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      *
92 92
      * @return array
93 93
      */
94
-    public function routineLanguages() ;
94
+    public function routineLanguages();
95 95
 
96 96
     /**
97 97
      * Get server variables
Please login to merge, or discard this patch.
src/Db/Grammar.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,10 +81,10 @@
 block discarded – undo
81 81
         $database = $foreignKey->database;
82 82
         $schema = $foreignKey->schema;
83 83
         $onActions = $this->driver->actions();
84
-        $sources = implode(', ', array_map(function ($idf) {
84
+        $sources = implode(', ', array_map(function($idf) {
85 85
             return $this->escapeId($idf);
86 86
         }, $foreignKey->source));
87
-        $targets = implode(', ', array_map(function ($idf) {
87
+        $targets = implode(', ', array_map(function($idf) {
88 88
             return $this->escapeId($idf);
89 89
         }, $foreignKey->target));
90 90
 
Please login to merge, or discard this patch.