OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
vendor
/
zircote
/
swagger-php
/
tests
/
Fixtures
/
Processors
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:34:54 AM
rwxr-xr-x
📄
EntityControllerClass.php
679 bytes
08/07/2024 04:34:53 AM
rw-r--r--
📄
EntityControllerInterface.php
495 bytes
08/07/2024 04:34:53 AM
rw-r--r--
📄
EntityControllerTrait.php
498 bytes
08/07/2024 04:34:54 AM
rw-r--r--
Editing: EntityControllerClass.php
Close
<?php declare(strict_types=1); /** * @license Apache 2.0 */ namespace OpenApi\Tests\Fixtures\Processors; use OpenApi\Annotations as OA; /** * 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) { } }