Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function resolve(string $uri, int $timeout): ?EasyRdf\Resource { |
||
26 | if (preg_match('|http://id.loc.gov/[^/]+/[^/]+/.+|', $uri)) { |
||
27 | $res = new LOCResource($this->model, $uri); |
||
28 | } elseif ($this->startsWith('http://www.wikidata.org/entity/', $uri)) { |
||
29 | $res = new WDQSResource($this->model, $uri); |
||
30 | } else { |
||
31 | $res = new LinkedDataResource($this->model, $uri); |
||
32 | } |
||
33 | return $res->resolve($timeout); |
||
34 | } |
||
35 | } |
||
36 |