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