diff --git a/modules/system/console/OctoberDown.php b/modules/system/console/OctoberDown.php
index fbaf42997..d895ad15e 100644
--- a/modules/system/console/OctoberDown.php
+++ b/modules/system/console/OctoberDown.php
@@ -38,7 +38,7 @@ class OctoberDown extends Command
/**
* Execute the console command.
*/
- public function fire()
+ public function handle()
{
if (!$this->confirmToProceed('This will DESTROY all database tables.')) {
return;
diff --git a/modules/system/console/OctoberEnv.php b/modules/system/console/OctoberEnv.php
index 1eff2d6a5..9848fdc27 100644
--- a/modules/system/console/OctoberEnv.php
+++ b/modules/system/console/OctoberEnv.php
@@ -45,7 +45,7 @@ class OctoberEnv extends Command
/**
* Execute the console command.
*/
- public function fire()
+ public function handle()
{
if (file_exists('.env')) {
return $this->error('.env file already exists.');
diff --git a/modules/system/console/OctoberFresh.php b/modules/system/console/OctoberFresh.php
index 4171992e0..ec918c3e9 100644
--- a/modules/system/console/OctoberFresh.php
+++ b/modules/system/console/OctoberFresh.php
@@ -40,7 +40,7 @@ class OctoberFresh extends Command
/**
* Execute the console command.
*/
- public function fire()
+ public function handle()
{
if (!$this->confirmToProceed('Are you sure?')) {
return;
diff --git a/modules/system/console/OctoberInstall.php b/modules/system/console/OctoberInstall.php
index 4554a3f60..b6661f246 100644
--- a/modules/system/console/OctoberInstall.php
+++ b/modules/system/console/OctoberInstall.php
@@ -60,7 +60,7 @@ class OctoberInstall extends Command
/**
* Execute the console command.
*/
- public function fire()
+ public function handle()
{
$this->displayIntro();
diff --git a/modules/system/console/OctoberMirror.php b/modules/system/console/OctoberMirror.php
index 5cd11ed9f..970b38697 100644
--- a/modules/system/console/OctoberMirror.php
+++ b/modules/system/console/OctoberMirror.php
@@ -82,7 +82,7 @@ class OctoberMirror extends Command
/**
* Execute the console command.
*/
- public function fire()
+ public function handle()
{
$this->getDestinationPath();
diff --git a/modules/system/console/OctoberUp.php b/modules/system/console/OctoberUp.php
index bce7b1506..1fd9b2fa6 100644
--- a/modules/system/console/OctoberUp.php
+++ b/modules/system/console/OctoberUp.php
@@ -36,7 +36,7 @@ class OctoberUp extends Command
/**
* Execute the console command.
*/
- public function fire()
+ public function handle()
{
$this->output->writeln('Migrating application and plugins...');
diff --git a/modules/system/console/OctoberUpdate.php b/modules/system/console/OctoberUpdate.php
index b5186c5e7..f394dcced 100644
--- a/modules/system/console/OctoberUpdate.php
+++ b/modules/system/console/OctoberUpdate.php
@@ -41,7 +41,7 @@ class OctoberUpdate extends Command
/**
* Execute the console command.
*/
- public function fire()
+ public function handle()
{
$this->output->writeln('Updating October...');
$manager = UpdateManager::instance()->setNotesOutput($this->output);
diff --git a/modules/system/console/OctoberUtil.php b/modules/system/console/OctoberUtil.php
index e0c6bfc1d..0228c3b75 100644
--- a/modules/system/console/OctoberUtil.php
+++ b/modules/system/console/OctoberUtil.php
@@ -53,7 +53,7 @@ class OctoberUtil extends Command
/**
* Execute the console command.
*/
- public function fire()
+ public function handle()
{
$command = implode(' ', (array) $this->argument('name'));
$method = 'util'.studly_case($command);
diff --git a/modules/system/console/PluginInstall.php b/modules/system/console/PluginInstall.php
index 49e62f40d..a18dbcd9a 100644
--- a/modules/system/console/PluginInstall.php
+++ b/modules/system/console/PluginInstall.php
@@ -42,7 +42,7 @@ class PluginInstall extends Command
* Execute the console command.
* @return void
*/
- public function fire()
+ public function handle()
{
$pluginName = $this->argument('name');
$manager = UpdateManager::instance()->setNotesOutput($this->output);
diff --git a/modules/system/console/PluginRefresh.php b/modules/system/console/PluginRefresh.php
index 5888da71a..91343e207 100644
--- a/modules/system/console/PluginRefresh.php
+++ b/modules/system/console/PluginRefresh.php
@@ -43,7 +43,7 @@ class PluginRefresh extends Command
* Execute the console command.
* @return void
*/
- public function fire()
+ public function handle()
{
/*
* Lookup plugin
diff --git a/modules/system/console/PluginRemove.php b/modules/system/console/PluginRemove.php
index e256f3938..bcef7caad 100644
--- a/modules/system/console/PluginRemove.php
+++ b/modules/system/console/PluginRemove.php
@@ -46,7 +46,7 @@ class PluginRemove extends Command
* Execute the console command.
* @return void
*/
- public function fire()
+ public function handle()
{
$pluginManager = PluginManager::instance();
$pluginName = $this->argument('name');
diff --git a/modules/system/console/ThemeInstall.php b/modules/system/console/ThemeInstall.php
index f23acebda..69c5c4f94 100644
--- a/modules/system/console/ThemeInstall.php
+++ b/modules/system/console/ThemeInstall.php
@@ -43,7 +43,7 @@ class ThemeInstall extends Command
* Execute the console command.
* @return void
*/
- public function fire()
+ public function handle()
{
$themeName = $this->argument('name');
$argDirName = $this->argument('dirName');
diff --git a/modules/system/console/ThemeList.php b/modules/system/console/ThemeList.php
index b3124792e..d04042f7f 100644
--- a/modules/system/console/ThemeList.php
+++ b/modules/system/console/ThemeList.php
@@ -37,7 +37,7 @@ class ThemeList extends Command
/**
* Execute the console command.
*/
- public function fire()
+ public function handle()
{
$themeManager = ThemeManager::instance();
$updateManager = UpdateManager::instance();
diff --git a/modules/system/console/ThemeRemove.php b/modules/system/console/ThemeRemove.php
index d9dd93dcf..10b49e02f 100644
--- a/modules/system/console/ThemeRemove.php
+++ b/modules/system/console/ThemeRemove.php
@@ -45,7 +45,7 @@ class ThemeRemove extends Command
* Execute the console command.
* @return void
*/
- public function fire()
+ public function handle()
{
$themeManager = ThemeManager::instance();
$themeName = $this->argument('name');
diff --git a/modules/system/console/ThemeUse.php b/modules/system/console/ThemeUse.php
index 3eca53237..9fef73247 100644
--- a/modules/system/console/ThemeUse.php
+++ b/modules/system/console/ThemeUse.php
@@ -42,7 +42,7 @@ class ThemeUse extends Command
* Execute the console command.
* @return void
*/
- public function fire()
+ public function handle()
{
if (!$this->confirmToProceed('Change the active theme?')) {
return;