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

MakeFiles   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 37
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 4
eloc 11
dl 0
loc 37
ccs 9
cts 9
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 16 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