| Conditions | 3 |
| Paths | 3 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function __construct(Request $request, ParameterBagInterface $params) |
||
| 21 | { |
||
| 22 | $this->request = $request; |
||
| 23 | $this->params = $params; |
||
| 24 | |||
| 25 | foreach ($params->get('pwc.apps') as $app) { |
||
| 26 | if (in_array($request->getHost(), $app['hosts'])) { |
||
| 27 | $this->appConfig = $app; |
||
| 28 | break; |
||
| 29 | } |
||
| 69 |