fix csfixer warnings

This commit is contained in:
Mohit Panjwani
2022-01-11 16:54:15 +05:30
parent dcb3ddecb9
commit 22f6a48b5b
9 changed files with 2 additions and 10 deletions

View File

@ -21,7 +21,7 @@ class ChangeEnablePortalFieldOfCustomersTable extends Migration
$customers = Customer::all();
if ($customers) {
$customers->map(function ($customer) {
$customers->map(function ($customer) {
$customer->enable_portal = false;
$customer->save();
});