| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function __construct(Loader $loader, MatchingPolicy $matchingPolicy) |
||
| 26 | { |
||
| 27 | $this->configs = []; |
||
| 28 | foreach ($loader->getResponsesArray() as $responseArrayConfig) { |
||
| 29 | $this->configs[] = Element::fromArray($responseArrayConfig); |
||
| 30 | } |
||
| 31 | |||
| 32 | $this->matchingPolicy = $matchingPolicy; |
||
| 33 | } |
||
| 34 | |||
| 50 |