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: Customer.php
Close
<?php declare(strict_types=1); /** * @license Apache 2.0 */ // NOTE: this file uses "\r\n" linebreaks on purpose namespace OpenApi\Tests\Fixtures; use Exception; use OpenApi\Annotations as OA; use OpenApi\Generator; use OpenApi\Generator as OpenApiGenerator; /** * A customer. * * @OA\Info(title="Fixture for ClassPropertiesTest", version="test") * @OA\Schema */ class Customer { /** * The first name of the customer. * * @var string * * @example John * @OA\Property */ public $firstname; /** * @var null|string the second name of the customer * * @example Allan * @OA\Property */ public $secondname; /** * The third name of the customer. * * @var string|null * * @example Peter * @OA\Property */ public $thirdname; /** * The unknown name of the customer. * * @var unknown|null * * @example Unknown * @OA\Property */ public $fourthname; /** * @var string the lastname of the customer * @OA\Property */ public $lastname; /** * @OA\Property * * @var string[] */ public $tags; /** * @OA\Property * * @var Customer */ public $submittedBy; /** * @OA\Property * * @var Customer[] */ public $friends; /** * @OA\Property * * @var Customer|null */ public $bestFriend; /** * @OA\Property * * @var Customer[]|null */ public $endorsedFriends; /** * for ContextTest. */ public function testResolvingFullyQualifiedNames(): void { (new OpenApiGenerator())->getLogger(); (new Generator())->getLogger(); new OA\Contact([]); throw new Exception(); } }