Extended.php 287 B

123456789101112131415161718192021
  1. <?php
  2. namespace OpenApiFixtures;
  3. /**
  4. * @OA\Schema(
  5. * schema="ExtendedModel",
  6. * allOf={
  7. * @OA\Schema(ref="#/components/schemas/Base"),
  8. * }
  9. * )
  10. */
  11. class Extended extends Base
  12. {
  13. /**
  14. * @OA\Property();
  15. * @var string
  16. */
  17. public $extendedProperty;
  18. }