Fix commands

This commit is contained in:
James Brooks
2018-06-26 08:25:09 +01:00
parent 394cfe7a25
commit f3efbd9809
5 changed files with 5 additions and 5 deletions

View File

@@ -40,7 +40,7 @@ class BeaconCommand extends Command
*
* @return void
*/
public function fire()
public function handle()
{
dispatch(new SendBeaconJob());
}

View File

@@ -46,7 +46,7 @@ class DemoMetricPointSeederCommand extends Command
*
* @return void
*/
public function fire()
public function handle()
{
if (!$this->confirmToProceed()) {
return;

View File

@@ -79,7 +79,7 @@ class DemoSeederCommand extends Command
*
* @return void
*/
public function fire()
public function handle()
{
if (!$this->confirmToProceed()) {
return;

View File

@@ -41,7 +41,7 @@ class InstallCommand extends Command
*
* @return void
*/
public function fire()
public function handle()
{
if (!$this->confirm('Do you want to install Cachet?')) {
$this->line('Installation aborted. Goodbye!');

View File

@@ -39,7 +39,7 @@ class VersionCommand extends Command
*
* @return void
*/
public function fire()
public function handle()
{
$this->info('Cachet '.CACHET_VERSION.' is installed ⚡');
}