| 123456789101112131415161718192021222324252627 |
- <?php
- namespace petstore;
- /**
- * @OA\Schema(required={"id", "name"})
- */
- class Pet
- {
- /**
- * @OA\Property(type="integer", format="int64")
- */
- public $id;
- /**
- * @OA\Property()
- * @var string
- */
- public $name;
- /**
- * @OA\Property()
- * @var string
- */
- public $tag;
- }
|