GrandAncestor.php 242 B

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