Passed
Pull Request — master (#21)
by
unknown
03:43
created
src/Database/Schema/macros/foreign-keys.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@
 block discarded – undo
30 30
     return $schema;
31 31
 });
32 32
 
33
- Blueprint::macro('addNullableForeign', function ($table, $fk, $bigInteger = false) {
34
-     return $this->addForeign($table, ['nullable' => true, 'fk' => $fk, 'bigInteger' => $bigInteger])->comment('Nullable FK for ' . $table);
35
- });
33
+    Blueprint::macro('addNullableForeign', function ($table, $fk, $bigInteger = false) {
34
+        return $this->addForeign($table, ['nullable' => true, 'fk' => $fk, 'bigInteger' => $bigInteger])->comment('Nullable FK for ' . $table);
35
+    });
36 36
 
37 37
 Blueprint::macro('referenceOn', function ($key, $table, $reference = 'id') {
38 38
     return $this->foreign($key)
Please login to merge, or discard this patch.