1 | <?php |
||
12 | class DisjointAwarePipeline extends Pipeline implements DisjointAwarePipelineInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var Fork |
||
16 | */ |
||
17 | public $fork; |
||
18 | |||
19 | /** |
||
20 | * DisjointAwarePipeline constructor. |
||
21 | * @param Fork $fork |
||
22 | */ |
||
23 | public function __construct(Fork $fork) |
||
28 | |||
29 | /** |
||
30 | * @inheritdoc |
||
31 | */ |
||
32 | public function disjoin(string $tag, callable $stage = null) |
||
36 | |||
37 | /** |
||
38 | * @inheritdoc |
||
39 | */ |
||
40 | public function join(callable $resolver = null) |
||
44 | |||
45 | /** |
||
46 | * @inheritdoc |
||
47 | */ |
||
48 | public function pipe(callable $stage) |
||
53 | } |
||
54 |