1 | <?php |
||
18 | class VasriCommand extends Command |
||
19 | { |
||
20 | /** |
||
21 | * Command signature |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $signature = 'vasri:build'; |
||
25 | |||
26 | /** |
||
27 | * Command description |
||
28 | * @var string |
||
29 | */ |
||
30 | protected $description = 'Build Manifest'; |
||
31 | |||
32 | /** |
||
33 | * @var ManifestBuilder |
||
34 | */ |
||
35 | private $manifest; |
||
36 | |||
37 | /** |
||
38 | * Inherits constructor from Illuminate\Console\Command |
||
39 | */ |
||
40 | public function __construct() |
||
46 | |||
47 | /** |
||
48 | * The executing method |
||
49 | * @throws Exception |
||
50 | */ |
||
51 | public function handle() |
||
55 | } |
||
56 |