| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 20 | public function fields(): array |
||
| 21 | { |
||
| 22 | return [ |
||
| 23 | 'Valid' => ['type' => Type::boolean()], |
||
| 24 | 'Member' => ['type' => $this->manager->getType('Member')], |
||
| 25 | 'Token' => ['type' => Type::string()], |
||
| 26 | 'Status' => ['type' => TokenStatusEnum::instance()], |
||
| 27 | 'Code' => ['type' => Type::int()], |
||
| 28 | 'Message' => ['type' => Type::string()], |
||
| 29 | ]; |
||
| 32 |