| 123456789101112131415161718192021222324 |
- <?php declare(strict_types=1);
- namespace AnotherNamespace;
- /**
- * @OA\Schema()
- */
- class NestedProperty
- {
- /**
- * @var bool
- * @OA\Property(
- * @OA\Property(
- * property="babyProperty",
- * @OA\Property(
- * property="theBabyOfBaby",
- * properties={@OpenApi\Annotations\Property(type="string", property="theBabyOfBabyBaby")}
- * )
- * ),
- * )
- */
- public $parentProperty;
- }
|