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

25 lines
338 B
PHP
Raw Normal View History

2021-11-18 09:57:04 +00:00
<?php
namespace OpenApi\Tests\Fixtures\InheritProperties;
/**
* @OA\Schema()
*/
class BaseThatImplements implements BaseInterface
{
/**
* @OA\Property();
* @var string
*/
public $baseProperty;
/**
* {@inheritDoc}
*/
public function getInterfaceProperty()
{
return "foo";
}
}