1 | <?php |
||
7 | class DynamicType implements TypeInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var TypeInterface |
||
11 | */ |
||
12 | private static $instance; |
||
13 | |||
14 | public static function getType() |
||
22 | |||
23 | /** |
||
24 | * Parse a given undefined type value |
||
25 | * |
||
26 | * @param string $value |
||
27 | * @param null $annotation Unused |
||
28 | * @return mixed |
||
29 | */ |
||
30 | public function parse($value, $annotation = null) |
||
48 | |||
49 | } |
||
50 |