OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
vendor
/
zircote
/
swagger-php
/
tests
/
Fixtures
/
ExpandClasses
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:34:54 AM
rwxr-xr-x
📄
Ancestor.php
249 bytes
08/07/2024 04:34:52 AM
rw-r--r--
📄
AncestorWithoutDocBlocks.php
193 bytes
08/07/2024 04:34:52 AM
rw-r--r--
📄
Base.php
270 bytes
08/07/2024 04:34:52 AM
rw-r--r--
📄
BaseInterface.php
332 bytes
08/07/2024 04:34:52 AM
rw-r--r--
📄
BaseThatImplements.php
422 bytes
08/07/2024 04:34:52 AM
rw-r--r--
📄
Extended.php
408 bytes
08/07/2024 04:34:52 AM
rw-r--r--
📄
ExtendedWithTwoSchemas.php
473 bytes
08/07/2024 04:34:52 AM
rw-r--r--
📄
ExtendedWithoutAllOf.php
303 bytes
08/07/2024 04:34:52 AM
rw-r--r--
📄
ExtendsBaseThatImplements.php
368 bytes
08/07/2024 04:34:52 AM
rw-r--r--
📄
GrandAncestor.php
361 bytes
08/07/2024 04:34:52 AM
rw-r--r--
📄
TraitUsedByExtendsBaseThatImplements.php
376 bytes
08/07/2024 04:34:52 AM
rw-r--r--
Editing: Extended.php
Close
<?php declare(strict_types=1); /** * @license Apache 2.0 */ namespace OpenApi\Tests\Fixtures\ExpandClasses; use OpenApi\Annotations as OA; /** * @OA\Schema( * schema="ExtendedModel", * allOf={ * @OA\Schema(ref="#/components/schemas/Base"), * } * ) */ class Extended extends Base { /** * @OA\Property * * @var string */ public $extendedProperty; }