18 lines
281 B
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;
|
||
|
}
|