coupon-admin/vendor/zircote/swagger-php/tests/Fixtures/AnotherNamespace/ChildWithDocBlocks.php

17 lines
247 B
PHP

<?php declare(strict_types=1);
namespace AnotherNamespace;
/**
* @OA\Schema()
*/
class ChildWithDocBlocks extends \OpenApi\Tests\Fixtures\AncestorWithoutDocBlocks
{
/**
* @var bool
* @OA\Property()
*/
public $isBaby;
}