| 12345678910111213141516171819202122 |
- <?php
- namespace Illuminate\Tests\Integration\Http\Fixtures;
- use JsonSerializable;
- class JsonSerializableResource implements JsonSerializable
- {
- public $resource;
- public function __construct($resource)
- {
- $this->resource = $resource;
- }
- public function jsonSerialize(): array
- {
- return [
- 'id' => $this->resource->id,
- ];
- }
- }
|