coupon-admin/vendor/zircote/swagger-php/tests/Fixtures/InheritProperties/ExtendsBaseThatImplements.php

18 lines
281 B
PHP

<?php
namespace OpenApi\Tests\Fixtures\InheritProperties;
/**
* @OA\Schema()
*/
class ExtendsBaseThatImplements extends BaseThatImplements
{
use TraitUsedByExtendsBaseThatImplements;
/**
* @OA\Property();
* @var string
*/
public $extendsProperty;
}