| 1 | <?php |
||
| 5 | class SourceTableNode extends TableNode implements SourceTableNodeInterface |
||
| 6 | { |
||
| 7 | /** @var string */ |
||
| 8 | protected $where; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @param string $where |
||
| 12 | * |
||
| 13 | * @return static |
||
| 14 | */ |
||
| 15 | public function setWhere($where) |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return string |
||
| 23 | */ |
||
| 24 | public function getWhere() |
||
| 28 | } |
||
| 29 |