| 1 | <?php |
||
| 8 | class ObjectSchema extends Schema |
||
| 9 | { |
||
| 10 | 2 | public function phpType(): string |
|
| 14 | |||
| 15 | 3 | public function property($name): Schema |
|
| 19 | |||
| 20 | /** |
||
| 21 | * @return Schema[] |
||
| 22 | */ |
||
| 23 | 3 | public function properties(): array |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @return string[] |
||
| 36 | */ |
||
| 37 | 2 | public function required(): array |
|
| 41 | |||
| 42 | 2 | public function isRequired($property): bool |
|
| 46 | } |
||
| 47 |