coupon-admin/vendor/zircote/swagger-php/tests/Fixtures/Parser/UserInterface.php

19 lines
317 B
PHP
Raw Normal View History

2021-11-18 09:57:04 +00:00
<?php declare(strict_types=1);
namespace OpenApi\Tests\Fixtures\Parser;
use OpenApi\Annotations as OA;
interface UserInterface extends OtherInterface
{
/**
* The first name of the user.
*
* @return string
* @example John
* @OA\Property()
*/
public function getFirstName();
}