Repository.php 253 B

123456789101112131415161718192021
  1. <?php
  2. namespace OpenApi\LinkExample;
  3. /**
  4. * @OA\Schema(schema="repository")
  5. */
  6. class Repository
  7. {
  8. /**
  9. * @OA\Property()
  10. * @var string
  11. */
  12. public $slug;
  13. /**
  14. * @OA\Property()
  15. * @var User
  16. */
  17. public $owner;
  18. }