23 lines
420 B
PHP
23 lines
420 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace OpenApi\Tests\Fixtures\Processors;
|
|
|
|
/**
|
|
* Entity controller interface.
|
|
*/
|
|
interface EntityControllerInterface
|
|
{
|
|
|
|
/**
|
|
* @OA\Post(
|
|
* tags={"EntityController"},
|
|
* path="entity/{id}",
|
|
* @OA\Response(
|
|
* response="default",
|
|
* description="successful operation"
|
|
* )
|
|
* )
|
|
*/
|
|
public function updateEntity($id);
|
|
}
|