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

17 lines
243 B
PHP
Raw Normal View History

2021-11-18 09:57:04 +00:00
<?php
namespace OpenApi\Tests\Fixtures\InheritProperties;
/**
* @OA\Schema()
*/
interface BaseInterface
{
/**
* @OA\Property(property="interfaceProperty");
* @var string
*/
public function getInterfaceProperty();
}