OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
vendor
/
zircote
/
swagger-php
/
Examples
/
using-interfaces
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:34:50 AM
rwxr-xr-x
📄
ColorInterface.php
273 bytes
08/07/2024 04:34:26 AM
rw-r--r--
📄
GreenProduct.php
295 bytes
08/07/2024 04:34:26 AM
rw-r--r--
📄
OpenApiSpec.php
654 bytes
08/07/2024 04:34:26 AM
rw-r--r--
📄
Product.php
445 bytes
08/07/2024 04:34:26 AM
rw-r--r--
📄
ProductController.php
1.43 KB
08/07/2024 04:34:26 AM
rw-r--r--
📄
ProductInterface.php
272 bytes
08/07/2024 04:34:26 AM
rw-r--r--
📄
using-interfaces.yaml
2.17 KB
08/07/2024 04:34:26 AM
rw-r--r--
Editing: ProductInterface.php
Close
<?php namespace OpenApi\Examples\UsingInterfaces; use OpenApi\Annotations as OA; /** * @OA\Schema */ interface ProductInterface { /** * The product name. * * @OA\Property(property="name", example="toaster") */ public function getName(); }