22 lines
294 B
PHP
22 lines
294 B
PHP
|
<?php
|
||
|
|
||
|
namespace OpenApi\Tests\Fixtures;
|
||
|
|
||
|
/**
|
||
|
* @OA\Schema(
|
||
|
* schema="ExtendedModel",
|
||
|
* allOf={
|
||
|
* @OA\Schema(ref="#/components/schemas/Base"),
|
||
|
* }
|
||
|
* )
|
||
|
*/
|
||
|
class Extended extends Base
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @OA\Property();
|
||
|
* @var string
|
||
|
*/
|
||
|
public $extendedProperty;
|
||
|
}
|