Ancestor.php 201 B

123456789101112131415
  1. <?php declare(strict_types=1);
  2. namespace OpenApiFixtures;
  3. /**
  4. * An intermediate class
  5. */
  6. class Ancestor extends GrandAncestor
  7. {
  8. /**
  9. * Without annotations
  10. */
  11. public $firstname;
  12. }