| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class MessagePartStreamReadException extends RuntimeException |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var IMessagePart the IMessagePart the error was caused on. |
||
| 23 | */ |
||
| 24 | protected IMessagePart $part; |
||
| 25 | |||
| 26 | 2 | public function __construct(IMessagePart $part, string $message = '', int $code = 0, ?\Throwable $previous = null) |
|
| 30 | } |
||
| 31 | |||
| 32 | 1 | public function getPart() : IMessagePart |
|
| 37 |