Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
7 / 7 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| AngelTypeResource | |
100.00% |
7 / 7 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| toArray | |
100.00% |
7 / 7 |
|
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\AngelType; |
| 8 | use Engelsystem\Models\BaseModel; |
| 9 | use Illuminate\Database\Eloquent\Relations\Pivot; |
| 10 | use Illuminate\Support\Collection; |
| 11 | |
| 12 | class AngelTypeResource extends BasicResource |
| 13 | { |
| 14 | protected Collection | BaseModel | Pivot | AngelType $model; |
| 15 | |
| 16 | public function toArray(): array |
| 17 | { |
| 18 | return [ |
| 19 | 'id' => $this->model->id, |
| 20 | 'name' => $this->model->name, |
| 21 | 'description' => $this->model->description, |
| 22 | 'restricted' => $this->model->restricted, |
| 23 | 'url' => url('/angeltypes', ['action' => 'view', 'angeltype_id' => $this->model->id]), |
| 24 | ]; |
| 25 | } |
| 26 | } |