1 | <?php |
||
17 | class VasriCommand extends Command |
||
18 | { |
||
19 | /** |
||
20 | * Command signature |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $signature = 'vasri:build'; |
||
24 | |||
25 | /** |
||
26 | * Command description |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $description = 'Build Manifest'; |
||
30 | |||
31 | /** |
||
32 | * Inherits constructor from Illuminate\Console\Command |
||
33 | */ |
||
34 | public function __construct() |
||
38 | |||
39 | /** |
||
40 | * The executing method |
||
41 | */ |
||
42 | public function handle() |
||
48 | } |
||
49 |