| 1 | <?php |
||
| 25 | abstract class AbstractGearmanDispatcher |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * @var EventDispatcherInterface |
||
| 29 | * |
||
| 30 | * Event dispatcher |
||
| 31 | */ |
||
| 32 | protected $eventDispatcher; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Construct method |
||
| 36 | * |
||
| 37 | * @param EventDispatcherInterface $eventDispatcher Event dispatcher |
||
| 38 | */ |
||
| 39 | 2 | public function __construct(EventDispatcherInterface $eventDispatcher) |
|
| 43 | } |
||
| 44 |