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