17 lines
199 B
PHP
17 lines
199 B
PHP
|
<?php
|
||
|
|
||
|
namespace OpenApi\Tests\Fixtures;
|
||
|
|
||
|
/**
|
||
|
* @OA\Schema()
|
||
|
*/
|
||
|
class ExtendedWithoutAllOf extends Base
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @OA\Property();
|
||
|
* @var string
|
||
|
*/
|
||
|
public $extendedProperty;
|
||
|
}
|