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