| 1 | <?php |
||
| 13 | class DeprecationParser implements EventSubscriberInterface |
||
| 14 | { |
||
| 15 | /** @var TestResultHandlerInterface */ |
||
| 16 | private $testResultContainer; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * DeprecationParser constructor. |
||
| 20 | * @param TestResultHandlerInterface $testResultContainer |
||
| 21 | */ |
||
| 22 | 35 | public function __construct(TestResultHandlerInterface $testResultContainer) |
|
| 26 | |||
| 27 | 70 | public static function getSubscribedEvents(): array |
|
| 33 | |||
| 34 | 35 | public function handleDeprecations(ProcessEvent $event) |
|
| 47 | |||
| 48 | 3 | private function createTestResult(AbstractParaunitProcess $process): TestResultWithMessage |
|
| 55 | } |
||
| 56 |