| Total Complexity | 4 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class MyQueryBuilder extends LightQueryBuilder |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @param string $column |
||
| 12 | * @param string|null $condition |
||
| 13 | * @return MyQueryBuilder |
||
| 14 | */ |
||
| 15 | public function avg(string $column, ?string $condition): self |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param string $columns |
||
| 28 | * @param string $condition |
||
| 29 | * @return MyQueryBuilder |
||
| 30 | */ |
||
| 31 | public function sum(string $columns, string $condition): self |
||
| 42 | } |