1 | <?php |
||
10 | class SubQueryTable extends AbstractTable |
||
11 | { |
||
12 | /** |
||
13 | * @var BuilderInterface |
||
14 | */ |
||
15 | private $subQb; |
||
16 | |||
17 | /** |
||
18 | * @param BuilderInterface $subQb |
||
19 | * @param BuilderInterface $qb |
||
20 | */ |
||
21 | public function __construct(BuilderInterface $subQb, BuilderInterface $qb) |
||
26 | |||
27 | /** |
||
28 | * @inheritdoc |
||
29 | */ |
||
30 | public function getTableName() |
||
36 | } |