Added artisan command to display current version of Bagisto version

This commit is contained in:
Prashant Singh 2019-04-04 13:11:45 +05:30
parent 530245d094
commit 6381c9bcff
1 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,42 @@
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class BagistoVersion extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'bagisto:version';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Displays version of Bagisto installed';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$this->comment('v'.config('app.version'));
}
}