Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function configureFrom(array $config) |
||
19 | { |
||
20 | $propertyAccessor = new PropertyAccessor(); |
||
21 | foreach ($this->configFields as $configField) { |
||
22 | if (isset($config[$configField])) { |
||
23 | $propertyAccessor->setValue($this->header, $configField, $config[$configField]); |
||
24 | } |
||
25 | } |
||
26 | |||
27 | return $this->header; |
||
28 | } |
||
29 | } |
||
30 |