Skip to content

Commit 10ca315

Browse files
Change incorrect reference to $this
Line 309: $this->table('status')->insert($rows)->save() should probably just be $table('status')->insert($rows)->save() without referencing $this.
1 parent 1ea6b02 commit 10ca315

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/en/migrations.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ insert methods in your migrations.
306306
]
307307
];
308308
309-
$this->table('status')->insert($rows)->save();
309+
$table('status')->insert($rows)->save();
310310
}
311311
312312
/**

0 commit comments

Comments
 (0)