Total Complexity | 5 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Coverage | 86.67% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class DebugTransport implements TransportInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var string $path |
||
15 | */ |
||
16 | protected $path; |
||
17 | |||
18 | 2 | public function __construct(string $path = null) |
|
25 | 2 | } |
|
26 | |||
27 | /** |
||
28 | * @inheritDoc |
||
29 | */ |
||
30 | 1 | public function send(AbstractMessage $message): void |
|
41 | } |
||
42 | 1 | } |
|
43 | |||
44 | /** |
||
45 | * getPath. |
||
46 | * |
||
47 | * @access protected |
||
48 | * @return string |
||
49 | */ |
||
50 | 1 | protected function getPath(): string |
|
55 |