Passed
Push — master ( ad5aca...fb19b8 )
by Andrey
15:16 queued 12:18
created
2020_06_04_000003_modify_roles_and_permissions_table_optimize_indexes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,14 +19,14 @@
 block discarded – undo
19 19
 
20 20
     protected function optimizeIndexes(string $table, string $first_key)
21 21
     {
22
-        $this->table($table, function (Blueprint $table) use ($first_key) {
22
+        $this->table($table, function(Blueprint $table) use ($first_key) {
23 23
             $table->index([$first_key]);
24 24
         });
25 25
     }
26 26
 
27 27
     protected function revertIndexes(string $table, string $first_key)
28 28
     {
29
-        $this->table($table, function (Blueprint $table) use ($first_key) {
29
+        $this->table($table, function(Blueprint $table) use ($first_key) {
30 30
             $table->dropIndex([$first_key]);
31 31
         });
32 32
     }
Please login to merge, or discard this patch.