1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-25 20:02:30 +01:00
freescout/app/Console/Commands/AfterAppUpdate.php
2018-11-09 02:27:13 -08:00

45 lines
848 B
PHP

<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class AfterAppUpdate extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'freescout:after-app-update';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Run commands after application has been updated';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$this->call('freescout:clear-cache');
$this->call('migrate', ['--force' => true]);
$this->call('queue:restart');
}
}