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