1 | <?php |
||
20 | class QueryCompiler implements QueryCompilerInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var TableCompiler |
||
24 | */ |
||
25 | private $tableCompiler; |
||
26 | |||
27 | /** |
||
28 | * @var ReferenceCompiler |
||
29 | */ |
||
30 | private $referenceCompiler; |
||
31 | |||
32 | /** |
||
33 | * @var ConcreteCompilerInterface[] |
||
34 | */ |
||
35 | private $concreteCompilers = []; |
||
36 | |||
37 | public function __construct() |
||
42 | |||
43 | /** |
||
44 | * @param ConcreteCompilerInterface $compiler |
||
45 | */ |
||
46 | public function addConcreteCompiler(ConcreteCompilerInterface $compiler) |
||
50 | |||
51 | /** |
||
52 | * @inheritdoc |
||
53 | */ |
||
54 | public function compile(BuilderInterface $builder) |
||
64 | } |