Test Failed
Branch improve-scrutinizer (33a448)
by Ayan
02:51
created

SampleConfig   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 5
rs 10
c 0
b 0
f 0
wmc 1
1
<?php
2
3
namespace Phprest\Stub\Service;
4
5
use Phprest\Service\Configurable;
6
7
class SampleConfig implements Configurable
8
{
9
    public static function getServiceName()
10
    {
11
        return 'sample';
12
    }
13
}
14