1 | <?php |
||
14 | class Properties extends MagicMap implements Constraint |
||
15 | { |
||
16 | /** @var Schema[] */ |
||
17 | protected $__arrayOfData = array(); |
||
18 | |||
19 | public function __set($name, $column) |
||
27 | |||
28 | public static function create() |
||
32 | |||
33 | /** @var Schema */ |
||
34 | private $additionalProperties; |
||
35 | |||
36 | /** |
||
37 | * @param Schema $additionalProperties |
||
38 | * @return Properties |
||
39 | */ |
||
40 | public function setAdditionalProperties(Schema $additionalProperties = null) |
||
45 | |||
46 | |||
47 | /** @var Egg[] */ |
||
48 | private $nestedProperties = array(); |
||
49 | |||
50 | /** @var Schema[] */ |
||
51 | public $nestedPropertyNames = array(); |
||
52 | |||
53 | protected function addNested(Schema $nested, $name) |
||
64 | |||
65 | /** |
||
66 | * @return Egg[] |
||
67 | */ |
||
68 | public function getNestedProperties() |
||
72 | } |