| Conditions | 3 |
| Paths | 3 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 43 | public function getHost(): string |
||
| 44 | { |
||
| 45 | foreach ($this->params->get('pwc.apps') as $app) { |
||
| 46 | if (in_array($this->request->getHost(), $app['hosts'])) { |
||
| 47 | return $app['hosts'][0]; |
||
| 48 | } |
||
| 49 | } |
||
| 50 | |||
| 51 | throw new Exception('Unconfigured host `'.$this->request->getHost().'`. See piedweb_cms.yaml'); |
||
| 52 | } |
||
| 69 |