Total Complexity | 4 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 80% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class Publisher |
||
8 | { |
||
9 | private const DEFAULT_ATTEMPTS = 3; |
||
10 | |||
11 | private $exchangeName; |
||
12 | private $confirmSelect; |
||
13 | private $attempts; |
||
14 | |||
15 | 1 | public function __construct( |
|
23 | } |
||
24 | |||
25 | 1 | public function confirmSelect(): bool |
|
28 | } |
||
29 | |||
30 | 1 | public function exchangeName(): string |
|
33 | } |
||
34 | |||
35 | public function attempts(): int |
||
40 |