Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class FamilyTable implements Table |
||
10 | { |
||
11 | protected const TemplatePath = __DIR__.'/../Templates/families.json'; |
||
12 | |||
13 | public function query(): Builder |
||
22 | families.id, families.id as "dtRowId", families.description as description, husband.name as husband_name, |
||
23 | wife.name as wife_name, families.is_active |
||
24 | ')); |
||
25 | } |
||
26 | |||
27 | public function templatePath(): string |
||
32 |