From df8008f1ed38087ff6c52e4281c8db3024e9819c Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 22 May 2019 00:52:32 -0700 Subject: [PATCH] Renamed fire() to handle() --- app/Console/Commands/ObjectImportCommand.php | 2 +- app/Console/Commands/SendExpectedCheckinAlerts.php | 2 +- app/Console/Commands/SendExpirationAlerts.php | 2 +- app/Console/Commands/SystemBackup.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Console/Commands/ObjectImportCommand.php b/app/Console/Commands/ObjectImportCommand.php index c848111bce..9f09ea7184 100644 --- a/app/Console/Commands/ObjectImportCommand.php +++ b/app/Console/Commands/ObjectImportCommand.php @@ -65,7 +65,7 @@ class ObjectImportCommand extends Command * * @return mixed */ - public function fire() + public function handle() { $filename = $this->argument('filename'); $class = title_case($this->option('item-type')); diff --git a/app/Console/Commands/SendExpectedCheckinAlerts.php b/app/Console/Commands/SendExpectedCheckinAlerts.php index cd04aa1193..dc01fba01d 100644 --- a/app/Console/Commands/SendExpectedCheckinAlerts.php +++ b/app/Console/Commands/SendExpectedCheckinAlerts.php @@ -42,7 +42,7 @@ class SendExpectedCheckinAlerts extends Command * * @return mixed */ - public function fire() + public function handle() { $settings = Setting::getSettings(); $whenNotify = Carbon::now()->addDays(7); diff --git a/app/Console/Commands/SendExpirationAlerts.php b/app/Console/Commands/SendExpirationAlerts.php index 29809a35b3..6fb331b18b 100644 --- a/app/Console/Commands/SendExpirationAlerts.php +++ b/app/Console/Commands/SendExpirationAlerts.php @@ -43,7 +43,7 @@ class SendExpirationAlerts extends Command * * @return mixed */ - public function fire() + public function handle() { $settings = Setting::getSettings(); diff --git a/app/Console/Commands/SystemBackup.php b/app/Console/Commands/SystemBackup.php index 26b1c0c750..2e4965c28b 100644 --- a/app/Console/Commands/SystemBackup.php +++ b/app/Console/Commands/SystemBackup.php @@ -36,7 +36,7 @@ class SystemBackup extends Command * * @return mixed */ - public function fire() + public function handle() { // $this->call('backup:run');