coupon-admin/vendor/zircote/swagger-php/tests/Fixtures/InheritProperties/GrandAncestor.php

20 lines
273 B
PHP
Raw Normal View History

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