Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class PersonLdsTable implements Table |
||
10 | { |
||
11 | protected const TemplatePath = __DIR__.'/../Templates/personLds.json'; |
||
12 | |||
13 | public function query(): Builder |
||
14 | { |
||
15 | return PersonLds::selectRaw(' |
||
|
|||
16 | person_lds.id, person_lds.group, person_lds.gid, person_lds.type, person_lds.stat, person_lds.date, person_lds.plac, person_lds.temp, person_lds.slac_famc, person_lds.created_at |
||
17 | '); |
||
18 | } |
||
19 | |||
20 | public function templatePath(): string |
||
23 | } |
||
24 | } |
||
25 |