1 | <?php |
||
20 | class PropertyMetadata extends BasePropertyMetadata |
||
21 | { |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | public $namespace; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | public $type; |
||
31 | |||
32 | /** |
||
33 | * PropertyMetadata constructor. |
||
34 | * |
||
35 | * @param string $class |
||
36 | * @param string $name |
||
37 | * @param string $namespace |
||
38 | */ |
||
39 | public function __construct($class, $name, $namespace) |
||
45 | |||
46 | /** |
||
47 | * @param string $type |
||
48 | */ |
||
49 | public function setType($type) |
||
53 | |||
54 | /** |
||
55 | * @return array |
||
56 | */ |
||
57 | public function toArray() |
||
63 | } |
||
64 |