OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
vendor
/
zircote
/
swagger-php
/
tests
/
Fixtures
/
Annotations
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:34:54 AM
rwxr-xr-x
📄
CustomAttachable.php
498 bytes
08/07/2024 04:34:51 AM
rw-r--r--
Editing: CustomAttachable.php
Close
<?php declare(strict_types=1); /** * @license Apache 2.0 */ namespace OpenApi\Tests\Fixtures\Annotations; use OpenApi\Annotations as OA; use OpenApi\Generator; /** * @Annotation */ class CustomAttachable extends OA\Attachable { /** * The attribute value. */ public $value = Generator::UNDEFINED; /** * @inheritdoc */ public static $_required = ['value']; public function allowedParents(): ?array { return [OA\Operation::class]; } }