| 1 | <?php |
||
| 11 | class PipelineFactory |
||
| 12 | { |
||
| 13 | /** @var EventDispatcherInterface */ |
||
| 14 | private $dispatcher; |
||
| 15 | |||
| 16 | 30 | public function __construct(EventDispatcherInterface $dispatcher) |
|
| 20 | |||
| 21 | /** |
||
| 22 | * @param int $pipelineNumber |
||
| 23 | * @return Pipeline |
||
| 24 | */ |
||
| 25 | 30 | public function create(int $pipelineNumber): Pipeline |
|
| 29 | } |
||
| 30 |