Passed
Push — master ( fa352d...0eb7bd )
by BruceScrutinizer
02:09
created

ResultProcessedFileEmpty::get()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 1
b 0
f 0
1
<?php declare(strict_types=1);
2
3
namespace NamespaceProtector\Result;
4
5
final class ResultProcessedFileEmpty implements ResultProcessedFileInterface
6
{
7
    public function get(): String
8
    {
9
        return '';
10
    }
11
12
    /** @return array<ResultInterface> */
13
    public function getConflicts(): array
14
    {
15
        return [];
16
    }
17
}
18