Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
9 / 9 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| UserResource | |
100.00% |
9 / 9 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| toArray | |
100.00% |
9 / 9 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Engelsystem\Controllers\Api\Resources; |
| 6 | |
| 7 | use Engelsystem\Models\BaseModel; |
| 8 | use Engelsystem\Models\User\User; |
| 9 | use Illuminate\Database\Eloquent\Relations\Pivot; |
| 10 | use Illuminate\Support\Collection; |
| 11 | |
| 12 | class UserResource extends BasicResource |
| 13 | { |
| 14 | protected Collection | BaseModel | Pivot | User $model; |
| 15 | |
| 16 | public function toArray(): array |
| 17 | { |
| 18 | return [ |
| 19 | 'id' => $this->model->id, |
| 20 | 'name' => $this->model->name, |
| 21 | 'first_name' => $this->model->personalData->first_name, |
| 22 | 'last_name' => $this->model->personalData->last_name, |
| 23 | 'pronoun' => $this->model->personalData->pronoun, |
| 24 | 'contact' => $this->model->contact->only(['dect', 'mobile']), |
| 25 | 'url' => url('/users', ['action' => 'view', 'user_id' => $this->model->id]), |
| 26 | ]; |
| 27 | } |
| 28 | } |