Test Setup Failed
Push — master ( 8f6b0a...c03d3f )
by Carsten
04:27 queued 12s
created

Salesman   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 18
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __toString() 0 4 1
1
<?php
2
namespace Germania\Salesmen;
3
4
class Salesman extends SalesmanAbstract implements SalesmanInterface
5
{
6
7
8
    public function __toString()
9
    {
10
        return $this->getDisplayName();
11
    }
12
13
14
15
16
17
18
19
20
21
}
22