ChildWithDocBlocks.php 221 B

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