| 123456789101112131415161718192021 |
- <?php
- namespace OpenApiFixtures;
- /**
- * @OA\Schema(
- * schema="ExtendedModel",
- * allOf={
- * @OA\Schema(ref="#/components/schemas/Base"),
- * }
- * )
- */
- class Extended extends Base
- {
- /**
- * @OA\Property();
- * @var string
- */
- public $extendedProperty;
- }
|