Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
20 | 2 | public function __construct(WorkerContext $workerContext, MessageAdapterFactory $factory = null) |
|
21 | { |
||
22 | 2 | $this->workerContext = $workerContext; |
|
23 | 2 | $this->eventDispatcher = new NullEventDispatcher(); |
|
24 | |||
25 | 2 | if(! $factory instanceof MessageAdapterFactory) |
|
26 | 2 | { |
|
27 | 2 | $factory = new MessageAdapterFactory(); |
|
28 | 2 | } |
|
29 | 2 | $this->messageAdapterFactory = $factory; |
|
30 | 2 | } |
|
31 | |||
68 |