1 | <?php |
||
16 | class Mapping |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $schemaName; |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | private $propertyName; |
||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | private $propertyUrl; |
||
30 | |||
31 | /** |
||
32 | * @param $schemaClass |
||
33 | * @param $propertyName |
||
34 | * @param $propertyUrl |
||
35 | */ |
||
36 | public function __construct($schemaClass, $propertyName, $propertyUrl) |
||
42 | |||
43 | /** |
||
44 | * @return string |
||
45 | */ |
||
46 | public function usedBy() |
||
50 | |||
51 | /** |
||
52 | * @return string |
||
53 | */ |
||
54 | public function name() |
||
58 | |||
59 | /** |
||
60 | * @return string |
||
61 | */ |
||
62 | public function url() |
||
66 | } |
||
67 |