We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 8 | final class ErrorFormattingEvent extends Event |
||
| 9 | { |
||
| 10 | /** @var Error */ |
||
| 11 | private $error; |
||
| 12 | |||
| 13 | /** @var \ArrayObject */ |
||
| 14 | private $formattedError; |
||
| 15 | |||
| 16 | 31 | public function __construct(Error $error, array $formattedError) |
|
| 21 | |||
| 22 | 20 | public function getError() |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @return \ArrayObject |
||
| 29 | */ |
||
| 30 | 23 | public function getFormattedError() |
|
| 34 | } |
||
| 35 |