Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
18 | public function fields(): array |
||
19 | { |
||
20 | return [ |
||
21 | 'ID' => ['type' => Type::int()], |
||
22 | 'FirstName' => ['type' => Type::string()], |
||
23 | 'Surname' => ['type' => Type::string()], |
||
24 | 'Email' => ['type' => Type::string()], |
||
25 | 'Token' => ['type' => Type::string()], |
||
26 | ]; |
||
29 |