Completed
Push — master ( 813353...e05ee5 )
by BruceScrutinizer
08:42
created

EmptyResult   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
A get() 0 3 1
1
<?php declare(strict_types=1);
2
3
namespace NamespaceProtector\Result;
4
5
final class EmptyResult implements ResultInterface
6
{
7
    public function __construct()
8
    {
9
    }
10
11
    public function get(): String
12
    {
13
        return '';
14
    }
15
}
16