From 32ad2371293ec971fa05342807f602301a91f270 Mon Sep 17 00:00:00 2001 From: Bubka <858858+Bubka@users.noreply.github.com> Date: Mon, 2 Sep 2024 10:14:37 +0200 Subject: [PATCH] Fix spelling & Cleaning --- app/Console/Commands/Maintenance/FixOrphanAccounts.php | 2 +- app/Console/Commands/Maintenance/FixUnsplittedAccounts.php | 2 +- ...09_08_191139_split_twofaccounts_uri_in_multiple_columns.php | 3 --- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/app/Console/Commands/Maintenance/FixOrphanAccounts.php b/app/Console/Commands/Maintenance/FixOrphanAccounts.php index 1d5f8a50c..e21b21051 100644 --- a/app/Console/Commands/Maintenance/FixOrphanAccounts.php +++ b/app/Console/Commands/Maintenance/FixOrphanAccounts.php @@ -64,7 +64,7 @@ public function handle() return; } - $this->line('Try to fix them...'); + $this->line('Trying to fix them...'); foreach ($twofaccounts as $twofaccount) { if ($twofaccount->legacy_uri === __('errors.indecipherable')) { diff --git a/app/Console/Commands/Maintenance/FixUnsplittedAccounts.php b/app/Console/Commands/Maintenance/FixUnsplittedAccounts.php index 96f1ae26b..a46b2b541 100644 --- a/app/Console/Commands/Maintenance/FixUnsplittedAccounts.php +++ b/app/Console/Commands/Maintenance/FixUnsplittedAccounts.php @@ -73,7 +73,7 @@ public function handle() return; } - $this->line('Try to fix them...'); + $this->line('Trying to fix them...'); foreach ($twofaccounts as $twofaccount) { if ($twofaccount->legacy_uri === __('errors.indecipherable')) { diff --git a/database/migrations/2021_09_08_191139_split_twofaccounts_uri_in_multiple_columns.php b/database/migrations/2021_09_08_191139_split_twofaccounts_uri_in_multiple_columns.php index bc1db2a68..c1eb61ab1 100644 --- a/database/migrations/2021_09_08_191139_split_twofaccounts_uri_in_multiple_columns.php +++ b/database/migrations/2021_09_08_191139_split_twofaccounts_uri_in_multiple_columns.php @@ -2,10 +2,7 @@ use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; -use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\Schema; -use Illuminate\Support\Facades\Crypt; -use Illuminate\Support\Facades\Log; class SplitTwofaccountsUriInMultipleColumns extends Migration {