prolab-api/vendor/zircote/swagger-php/tests/Fixtures/InheritProperties/Extended.php

22 lines
312 B
PHP
Raw Normal View History

2025-10-04 09:16:19 +00:00
<?php
namespace OpenApi\Tests\Fixtures\InheritProperties;
/**
* @OA\Schema(
* schema="ExtendedModel",
* allOf={
* @OA\Schema(ref="#/components/schemas/Base"),
* }
* )
*/
class Extended extends Base
{
/**
* @OA\Property();
* @var string
*/
public $extendedProperty;
}