| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Lines | 10 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 46 | View Code Duplication | public function getSiteAccess(string $name): SiteAccess |
|
| 47 | { |
||
| 48 | foreach ($this->providers as $provider) { |
||
| 49 | if ($provider->isDefined($name)) { |
||
| 50 | return $provider->getSiteAccess($name); |
||
| 51 | } |
||
| 52 | } |
||
| 53 | |||
| 54 | throw new \RuntimeException("Undefined siteaccess: $name"); |
||
| 55 | } |
||
| 56 | } |
||
| 57 |