1 | <?php |
||
16 | class MappedProperty |
||
17 | { |
||
18 | /** |
||
19 | * @var array |
||
20 | */ |
||
21 | private static $instances = []; |
||
22 | |||
23 | /** |
||
24 | * @param string $schemaClass |
||
25 | * @param string $propertyName |
||
26 | * @param string $propertyUrl |
||
27 | * |
||
28 | * @return Mapping |
||
29 | */ |
||
30 | public static function create($schemaClass, $propertyName, $propertyUrl) |
||
39 | } |
||
40 |