1 | <?php |
||
16 | class WikibaseValueParserFactory { |
||
17 | |||
18 | /** |
||
19 | * @var string language code |
||
20 | */ |
||
21 | private $languageCode; |
||
22 | |||
23 | /** |
||
24 | * @var EntityStore |
||
25 | */ |
||
26 | private $entityStore; |
||
27 | |||
28 | /** |
||
29 | * @param $languageCode |
||
30 | * @param EntityStore $entityStore |
||
31 | */ |
||
32 | 7 | public function __construct($languageCode, EntityStore $entityStore) { |
|
36 | |||
37 | /** |
||
38 | * @return WikibaseValueParser |
||
39 | */ |
||
40 | 7 | public function newWikibaseValueParser() { |
|
53 | |||
54 | private function newWikibaseEntityParser($type) { |
||
65 | } |
||
66 |