35 lines
605 B
PHP
35 lines
605 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace OpenApi\Tests\Fixtures\Processors;
|
|
|
|
/**
|
|
* An entity controller class.
|
|
*
|
|
* @OA\Info(version="1.0.0")
|
|
*/
|
|
class EntityControllerClass implements EntityControllerInterface
|
|
{
|
|
use EntityControllerTrait;
|
|
|
|
/**
|
|
* @OA\Get(
|
|
* tags={"EntityController"},
|
|
* path="entity/{id}",
|
|
* @OA\Response(
|
|
* response="default",
|
|
* description="successful operation"
|
|
* )
|
|
* )
|
|
*/
|
|
public function getEntry($id)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function updateEntity($id)
|
|
{
|
|
}
|
|
}
|