Completed
Push — dev ( d0b24b...3e90e1 )
by Gaige
04:11
created

VasriCommand::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 7
rs 10
c 0
b 0
f 0
1
<?php
2
3
4
namespace ExoUNX\Vasri\Commands;
5
6
use Illuminate\Console\Command;
7
use ExoUNX\Vasri\ManifestBuilder;
8
9
/**
10
 * Class VasriCommand
11
 *
12
 * @package ExoUNX\Vasri
13
 * @author  Gaige Lama <[email protected]>
14
 * @license MIT License
15
 * @link    https://github.com/ExoUNX/Vasri
16
 */
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()
33
    {
34
        parent::__construct();
35
    }
36
37
    /**
38
     * The executing method
39
     */
40
    public function handle()
41
    {
42
        $manifest = new ManifestBuilder();
43
44
        $manifest->buildManifest();
45
46
    }
47
}
48