Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | final class AstTranslator implements AstTranslatorInterface |
||
11 | { |
||
12 | |||
13 | private $queryCallbackBuilder; |
||
14 | |||
15 | public function __construct(CallbackBuilderInterface $callbackBuilder) |
||
16 | { |
||
17 | $this->queryCallbackBuilder = $callbackBuilder; |
||
18 | } |
||
19 | |||
20 | public function buildQuery(string $source, Tree $queryAst): QueryInterface |
||
33 | ); |
||
34 | } |
||
36 |