1 | <?php |
||
21 | abstract class AbstractConcreteCompiler implements ConcreteCompilerInterface |
||
22 | { |
||
23 | /** |
||
24 | * @var Pipeline |
||
25 | */ |
||
26 | private $pipeline; |
||
27 | |||
28 | /** |
||
29 | * @param array $stages |
||
30 | */ |
||
31 | public function __construct(array $stages) |
||
35 | |||
36 | /** |
||
37 | * @return Pipeline |
||
38 | */ |
||
39 | public function getPipeline() |
||
43 | |||
44 | /** |
||
45 | * @inheritdoc |
||
46 | */ |
||
47 | public function compile(BuilderInterface $builder) |
||
53 | |||
54 | /** |
||
55 | * @param CompilerPayload $payload |
||
56 | * |
||
57 | * @return CompilerPayload |
||
58 | */ |
||
59 | private function process(CompilerPayload $payload) |
||
63 | } |