Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
8 | class AbstractThreadMediator |
||
9 | { |
||
10 | /** @var Mediator */ |
||
11 | private $mediator; |
||
12 | |||
13 | /** |
||
14 | * @return Mediator |
||
15 | */ |
||
16 | protected function getMediator() |
||
17 | { |
||
18 | return $this->mediator; |
||
19 | } |
||
20 | |||
21 | public function setMediator(Mediator $mediator) |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @param EventInterface $event |
||
28 | */ |
||
29 | protected function notify(EventInterface $event) |
||
32 | } |
||
33 | } |