GrandAncestor.php 266 B

12345678910111213141516171819
  1. <?php declare(strict_types=1);
  2. namespace OpenApiFixtures;
  3. class GrandAncestor
  4. {
  5. /**
  6. * @OA\Property();
  7. * @var string
  8. */
  9. public $firstname;
  10. /**
  11. * @OA\Property(property="lastname");
  12. * @var string
  13. */
  14. public $lastname;
  15. }