1 | <?php |
||
27 | class AnalyzeLifeCycleNotifier implements LifeCycleNotifier |
||
28 | { |
||
29 | |||
30 | /** |
||
31 | * @var \PHPExtra\EventManager\EventManager |
||
32 | */ |
||
33 | private $manager; |
||
34 | |||
35 | /** |
||
36 | * @param Reporter $reporter |
||
37 | */ |
||
38 | public function __construct(Reporter $reporter = null) |
||
51 | |||
52 | public function setEventManager(EventManager $manager) |
||
56 | |||
57 | public function getEventManager() |
||
61 | |||
62 | public function notifyInitialize(AnalyzerConfiguration $configuration) |
||
67 | |||
68 | public function notifyStart() |
||
73 | |||
74 | /** |
||
75 | * @param AnalyzedCoverageResult $result |
||
76 | */ |
||
77 | public function notifyStop(AnalyzedCoverageResult $result) |
||
82 | |||
83 | } |
||
84 |