| Total Complexity | 4 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | #[Immutable] |
||
| 13 | 2 | final class ClassExtractorException extends \RuntimeException |
|
| 14 | 2 | { |
|
| 15 | #[Pure] |
||
| 16 | public function __construct( |
||
| 17 | private readonly string $property, |
||
| 18 | string $message, |
||
| 19 | int $code = 0, |
||
| 20 | 2 | ?Throwable $previous = null |
|
| 21 | ) { |
||
| 22 | parent::__construct($message, $code, $previous); |
||
| 23 | 1 | } |
|
| 24 | |||
| 25 | #[Pure] |
||
| 32 | 1 | } |
|
| 33 | |||
| 34 | #[Pure] |
||
| 42 | 1 | } |
|
| 43 | |||
| 44 | 1 | public function getProperty(): string |
|
| 49 |