Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class PersonAnciTable implements Table |
||
10 | { |
||
11 | protected const TemplatePath = __DIR__.'/../Templates/personAncis.json'; |
||
12 | |||
13 | public function query(): Builder |
||
14 | { |
||
15 | return PersonAnci::selectRaw(' |
||
|
|||
16 | person_anci.id, "person_anci.group", person_anci.gid, person_anci.anci, person_anci.created_at |
||
17 | '); |
||
18 | } |
||
19 | |||
20 | public function templatePath(): string |
||
23 | } |
||
24 | } |
||
25 |