You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

34 lines
605 B

<?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)
{
}
}