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

17 lines
243 B
PHP

<?php
namespace OpenApi\Tests\Fixtures\InheritProperties;
/**
* @OA\Schema()
*/
interface BaseInterface
{
/**
* @OA\Property(property="interfaceProperty");
* @var string
*/
public function getInterfaceProperty();
}