| 1 | <?php |
||
| 13 | class PipelineFactory |
||
| 14 | { |
||
| 15 | /** @var EventDispatcherInterface */ |
||
| 16 | private $dispatcher; |
||
| 17 | |||
| 18 | 41 | public function __construct(EventDispatcherInterface $dispatcher) |
|
| 22 | |||
| 23 | /** |
||
| 24 | * @param int $pipelineNumber |
||
| 25 | * @return Pipeline |
||
| 26 | */ |
||
| 27 | 41 | public function create(int $pipelineNumber): Pipeline |
|
| 31 | } |
||
| 32 |