| Total Complexity | 5 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class MethodErrorException extends RuntimeException |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var stdClass|null |
||
| 26 | */ |
||
| 27 | protected $data; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * InternalErrorException constructor. |
||
| 31 | * |
||
| 32 | * @param string $message |
||
| 33 | * @param int $code |
||
| 34 | * @param Throwable|null $previous |
||
| 35 | * @param stdClass|null $data |
||
| 36 | */ |
||
| 37 | public function __construct( |
||
| 55 | } |
||
| 56 | |||
| 57 | /** |
||
| 58 | * @return stdClass|null |
||
| 59 | */ |
||
| 60 | public function getData(): ?stdClass |
||
| 65 |