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