Test Failed
Pull Request — master (#68)
by Keoghan
04:30
created

NullCliCommand   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 2
dl 0
loc 10
ccs 2
cts 2
cp 1
rs 10
c 1
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A perform() 0 3 1
1
<?php
2
3
namespace App\Support\Console\DockerCompose;
4
5
6
class NullCliCommand extends CliCommand
7
{
8
    /**
9
     * Execute the command.
10
     *
11
     * @return string|null
12
     */
13 2
    public function perform()
14
    {
15 2
        return null;
16
    }
17
}
18