17 lines
243 B
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();
|
||
|
}
|