Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
7 | final class Capabilities implements CapabilitiesInterface |
||
8 | { |
||
9 | |||
10 | private $isDefinite; |
||
11 | |||
12 | private $isAddressable; |
||
13 | |||
14 | 4 | public function __construct(bool $isDefinite, bool $isAddressable) |
|
18 | 4 | } |
|
19 | |||
20 | /** |
||
21 | * @return bool |
||
22 | */ |
||
23 | 2 | public function isDefinite(): bool |
|
26 | } |
||
27 | |||
28 | /** |
||
29 | * @return bool |
||
30 | */ |
||
31 | 2 | public function isAddressable(): bool |
|
36 |