| 123456789101112131415161718 |
- <?php
- namespace App\Resource;
- use Hyperf\Resource\Json\JsonResource;
- class UserResources extends JsonResource
- {
- /**
- * Transform the resource into an array.
- *
- * @return array
- */
- public function toArray(): array
- {
- return parent::toArray();
- }
- }
|