1 | <?php |
||
17 | abstract class Builder implements BuilderInterface |
||
18 | { |
||
19 | /** |
||
20 | * @return \Generator |
||
21 | */ |
||
22 | protected function nothing(): \Generator |
||
28 | |||
29 | /** |
||
30 | * @param \Generator $generator |
||
31 | * @param \Closure $then |
||
32 | * @return \Generator |
||
33 | */ |
||
34 | protected function extractResult(\Generator $generator, \Closure $then): \Generator |
||
40 | } |
||
41 |