for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ExoUNX\Vasri\Commands;
use Exception;
use Illuminate\Console\Command;
use ExoUNX\Vasri\ManifestBuilder;
/**
* Class VasriCommand
*
* @package ExoUNX\Vasri
* @author Gaige Lama <[email protected]>
* @license MIT License
* @link https://github.com/ExoUNX/Vasri
*/
class VasriCommand extends Command
{
* Command signature
* @var string
protected $signature = 'vasri:build';
* Command description
protected $description = 'Build Manifest';
* @var ManifestBuilder
private $manifest;
* Inherits constructor from Illuminate\Console\Command
public function __construct()
parent::__construct();
$this->manifest = new ManifestBuilder();
}
* The executing method
* @throws Exception
public function handle()
$this->manifest->deployManifest();