| 1 | <?php |
||
| 13 | class SchemaAdditionalProperties |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var Schema|boolean |
||
| 17 | */ |
||
| 18 | protected $properties; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Constructor |
||
| 22 | * |
||
| 23 | * @param Schema|boolean $properties either a boolean or a Schema object |
||
| 24 | */ |
||
| 25 | 2 | public function __construct($properties) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * gets properties |
||
| 32 | * |
||
| 33 | * @return Schema|boolean properties |
||
| 34 | */ |
||
| 35 | 2 | public function getProperties() |
|
| 39 | |||
| 40 | /** |
||
| 41 | * sets properties |
||
| 42 | * |
||
| 43 | * @param Schema|boolean $properties properties |
||
| 44 | * |
||
| 45 | * @return void |
||
| 46 | */ |
||
| 47 | 2 | public function setProperties($properties) |
|
| 51 | } |
||
| 52 |