| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 4 | abstract class AbstractQuery |
||
| 5 | { |
||
| 6 | public string $table; |
||
| 7 | public string $tableAlias; |
||
| 8 | |||
| 9 | /** @return static */ |
||
| 10 | public function setTable(string $table): AbstractQuery |
||
| 14 | } |
||
| 15 | |||
| 16 | /** @return static */ |
||
| 17 | public function setTableAlias(string $alias): AbstractQuery |
||
| 21 | } |
||
| 22 | |||
| 23 | abstract public function __toString(): string; |
||
| 24 | } |
||
| 25 |