diff --git a/app/Console/Commands/ObjectImportCommand.php b/app/Console/Commands/ObjectImportCommand.php index c848111bc..9f09ea718 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 cd04aa119..dc01fba01 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 29809a35b..6fb331b18 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 26b1c0c75..2e4965c28 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');