We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
12 | final class ErrorFormattingEvent extends \Symfony\Component\EventDispatcher\Event |
||
|
|||
13 | { |
||
14 | /** @var Error */ |
||
15 | private $error; |
||
16 | |||
17 | /** @var \ArrayObject */ |
||
18 | private $formattedError; |
||
19 | |||
20 | public function __construct(Error $error, array $formattedError) |
||
24 | } |
||
25 | |||
26 | public function getError() |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @return \ArrayObject |
||
33 | */ |
||
34 | public function getFormattedError(): \ArrayObject |
||
68 |