OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
vendor
/
zircote
/
swagger-php
/
Examples
/
using-links
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:34:50 AM
rwxr-xr-x
📄
OpenApiSpec.php
179 bytes
08/07/2024 04:34:26 AM
rw-r--r--
📄
PullRequest.php
474 bytes
08/07/2024 04:34:26 AM
rw-r--r--
📄
RepositoriesController.php
5.03 KB
08/07/2024 04:34:26 AM
rw-r--r--
📄
Repository.php
303 bytes
08/07/2024 04:34:26 AM
rw-r--r--
📄
User.php
296 bytes
08/07/2024 04:34:26 AM
rw-r--r--
📄
UsersController.php
729 bytes
08/07/2024 04:34:26 AM
rw-r--r--
📄
using-links.yaml
5.14 KB
08/07/2024 04:34:26 AM
rw-r--r--
Editing: PullRequest.php
Close
<?php namespace OpenApi\Examples\UsingLinks; use OpenApi\Annotations as OA; /** * @OA\Schema(schema="pullrequest") */ class PullRequest { /** * @OA\Property * * @var int */ public $id; /** * @OA\Property * * @var string */ public $title; /** * @OA\Property * * @var Repository */ public $repository; /** * @OA\Property * * @var User */ public $author; }