1 | <?php |
||
18 | class DisjointAwarePipeline extends Pipeline implements DisjointAwarePipelineInterface |
||
19 | { |
||
20 | /** |
||
21 | * @var Fork |
||
22 | */ |
||
23 | public $fork; |
||
24 | |||
25 | /** |
||
26 | * DisjointAwarePipeline constructor. |
||
27 | * @param Fork $fork |
||
28 | */ |
||
29 | public function __construct(Fork $fork) |
||
34 | |||
35 | /** |
||
36 | * @inheritdoc |
||
37 | */ |
||
38 | public function disjoin($tag, callable $stage = null) |
||
42 | |||
43 | /** |
||
44 | * @inheritdoc |
||
45 | */ |
||
46 | public function join(callable $resolver = null) |
||
50 | } |
||
51 |