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

20 lines
291 B
PHP
Raw Normal View History

2025-10-04 09:16:19 +00:00
<?php declare(strict_types=1);
namespace OpenApi\Tests\Fixtures\InheritProperties;
class GrandAncestor
{
/**
* @OA\Property();
* @var string
*/
public $firstname;
/**
* @OA\Property(property="lastname");
* @var string
*/
public $lastname;
}