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

Salesman::__toString()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
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