From 2e9d61748c17e6b3f852350d3a881819c0cc0dd8 Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 7 Jan 2023 20:33:13 +0000 Subject: [PATCH] Shift console routes --- routes/console.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/routes/console.php b/routes/console.php index 8bced34d3..19dce65bc 100644 --- a/routes/console.php +++ b/routes/console.php @@ -15,12 +15,12 @@ use Illuminate\Foundation\Inspiring; */ Artisan::command('inspire', function () { $this->comment(Inspiring::quote()); -})->describe('Display an inspiring quote'); +})->purpose('Display an inspiring quote'); Artisan::command('mac-update', function () { $emails = new App\Model\helpdesk\Email\Emails(); $emails->update(['password' => encrypt('')]); -})->describe('Updating encrypted value to null'); +})->purpose('Updating encrypted value to null'); /* * Command for pre install check @@ -38,7 +38,7 @@ Artisan::command('preinsatall:check', function () { //throw new \Exception($ex->getMessage()); } $this->info('Preinstall has checked successfully'); -})->describe('check for the pre installation'); +})->purpose('check for the pre installation'); /* * Migration for installation @@ -54,7 +54,7 @@ Artisan::command('install:migrate', function () { throw new \Exception($ex->getMessage()); } $this->info('Migrated successfully'); -})->describe('migration for install'); +})->purpose('migration for install'); /* * Seeding for installation @@ -70,4 +70,4 @@ Artisan::command('install:seed', function () { } $this->call('db:seed', ['--force' => true]); $this->info('seeded successfully'); -})->describe('Seeding for install'); +})->purpose('Seeding for install');