Test Failed
Pull Request — 1.x (#36)
by
unknown
04:32
created
src/Driver/SQLite/Schema/SQLiteForeignKey.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
      */
75 75
     public static function createInstance(string $table, string $tablePrefix, array $schema): self
76 76
     {
77
-        $reference = new self($table, $tablePrefix, (string) $schema['id']);
77
+        $reference = new self($table, $tablePrefix, (string)$schema['id']);
78 78
 
79 79
         $reference->columns = $schema['from'];
80 80
         $reference->foreignTable = $schema['table'];
Please login to merge, or discard this patch.
src/polyfill.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 
10 10
 declare(strict_types=1);
11 11
 
12
-spl_autoload_register(static function (string $class) {
12
+spl_autoload_register(static function(string $class) {
13 13
     if (strpos($class, 'Spiral\\Database\\') === 0) {
14 14
         $original = 'Cycle\\Database\\' . substr($class, 16);
15 15
 
Please login to merge, or discard this patch.