Child.php 192 B

12345678910111213141516
  1. <?php
  2. namespace AnotherNamespace;
  3. /**
  4. * @SWG\Definition()
  5. */
  6. class Child extends \SwaggerFixtures\Ancestor
  7. {
  8. /**
  9. * @var bool
  10. * @SWG\Property()
  11. */
  12. public $isBaby;
  13. }