1 | <?php |
||
11 | abstract class AbstractSqlTarget extends AbstractCompilationTarget |
||
12 | { |
||
13 | protected $allowStarOperator = true; |
||
14 | |||
15 | public function __construct(array $operators = [], array $inlineOperators = [], $allowStarOperator = true) |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | protected function createVisitor(Context $context) |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function getOperators(): Definitions |
||
37 | } |
||
38 |