Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
5 / 5 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
ShiftTypeResource | |
100.00% |
5 / 5 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
toArray | |
100.00% |
5 / 5 |
|
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\Shifts\ShiftType; |
9 | use Illuminate\Support\Collection; |
10 | |
11 | class 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 | } |