Passed
Push — master ( cb14e2...009e7e )
by Keoghan
03:39
created

MakeFiles::handle()   A

Complexity

Conditions 4
Paths 8

Size

Total Lines 16
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 9
CRAP Score 4

Importance

Changes 0
Metric Value
eloc 8
dl 0
loc 16
ccs 9
cts 9
cp 1
rs 10
c 0
b 0
f 0
cc 4
nc 8
nop 0
crap 4
1
<?php
2
3
namespace App\Commands;
4
5
use App\Models\Site;
6
7
class MakeFiles extends BaseCommand
8
{
9
    /**
10
     * The signature of the command.
11
     *
12
     * @var string
13
     */
14
    protected $signature = 'make-files';
15
16
    /**
17
     * The description of the command.
18
     *
19
     * @var string
20
     */
21
    protected $description = '(Re)make the files we need';
22
23
    /**
24
     * Execute the console command.
25
     *
26
     * @return void
27
     */
28 3
    public function handle(): void
29
    {
30 3
        $wasUp = $this->porter->isUp();
31
32 3
        if ($wasUp) {
33 1
            $this->call('stop');
34
        }
35
36 3
        $this->porter->compose();
37
38 3
        foreach (Site::all() as $site) {
39 2
            $site->buildFiles();
40
        }
41
42 3
        if ($wasUp) {
43 1
            $this->call('start');
44
        }
45 3
    }
46
}
47