Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
ShiftTypeResource
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 toArray
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3declare(strict_types=1);
4
5namespace Engelsystem\Controllers\Api\Resources;
6
7use Engelsystem\Models\BaseModel;
8use Engelsystem\Models\Shifts\ShiftType;
9use Illuminate\Support\Collection;
10
11class ShiftTypeResource extends BasicResource
12{
13    protected Collection | BaseModel | ShiftType $model;
14
15    public function toArray(): array
16    {
17        return [
18            'id' => $this->model->id,
19            'name' => $this->model->name,
20            'description' => $this->model->description,
21        ];
22    }
23}