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