OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
vendor
/
zircote
/
swagger-php
/
tests
/
Fixtures
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:34:33 AM
rwxr-xr-x
📁
Annotations
-
08/07/2024 04:34:51 AM
rwxr-xr-x
📁
AnotherNamespace
-
08/07/2024 04:35:07 AM
rwxr-xr-x
📁
Apis
-
08/07/2024 04:35:08 AM
rwxr-xr-x
📁
Attributes
-
08/07/2024 04:34:52 AM
rwxr-xr-x
📄
BadExampleParameter.php
320 bytes
08/07/2024 04:34:32 AM
rw-r--r--
📄
Customer.php
1.8 KB
08/07/2024 04:34:32 AM
rw-r--r--
📄
CustomerInterface.php
1.42 KB
08/07/2024 04:34:32 AM
rw-r--r--
📄
Deprecated.php
147 bytes
08/07/2024 04:34:32 AM
rw-r--r--
📄
DuplicateOperationId.php
837 bytes
08/07/2024 04:34:32 AM
rw-r--r--
📁
ExpandClasses
-
08/07/2024 04:34:52 AM
rwxr-xr-x
📄
InvalidPropertyAttribute.php
275 bytes
08/07/2024 04:34:32 AM
rw-r--r--
📄
NestedProperty.php
553 bytes
08/07/2024 04:34:32 AM
rw-r--r--
📁
PHP
-
08/07/2024 04:35:09 AM
rwxr-xr-x
📁
Parser
-
08/07/2024 04:35:08 AM
rwxr-xr-x
📁
Processors
-
08/07/2024 04:34:53 AM
rwxr-xr-x
📄
Request.php
479 bytes
08/07/2024 04:34:32 AM
rw-r--r--
📁
Scratch
-
08/07/2024 04:34:56 AM
rwxr-xr-x
📄
ThirdPartyAnnotations.php
828 bytes
08/07/2024 04:34:32 AM
rw-r--r--
📄
TypedProperties.php
1.71 KB
08/07/2024 04:34:32 AM
rw-r--r--
📄
Unreferenced.php
1.08 KB
08/07/2024 04:34:32 AM
rw-r--r--
📄
UsingAttributes.php
236 bytes
08/07/2024 04:34:32 AM
rw-r--r--
📄
UsingCustomAttachables.php
502 bytes
08/07/2024 04:34:32 AM
rw-r--r--
📄
UsingPhpDoc.php
676 bytes
08/07/2024 04:34:32 AM
rw-r--r--
📄
UsingRefs.php
873 bytes
08/07/2024 04:34:32 AM
rw-r--r--
📄
UsingVar.php
587 bytes
08/07/2024 04:34:32 AM
rw-r--r--
Editing: ThirdPartyAnnotations.php
Close
<?php declare(strict_types=1); /** * @license Apache 2.0 */ namespace OpenApi\Tests\Fixtures; use AnotherNamespace\Annotations as Annotation; use OpenApi\Annotations as OA; /** * @OA\Info(title="Fixture for ParserTest", version="test") * * Based on the example http://framework.zend.com/manual/current/en/modules/zend.form.quick-start.html */ class Fixture { } /** * @Annotation\Unrelated("user") */ class ThirdPartyAnnotations { /** * @Annotation\Unrelated */ public $id; /** * @Annotation\Unrelated("user") */ public $username; /** * @Annotation\Unrelated("email") */ public $email; /** * @OA\Get(path="api/3rd-party", @OA\Response(response="200", description="a response")) */ public function methodWithOpenApiAnnotation() { } }