| Conditions | 4 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 4 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | 3 | public function onBootstrap(MvcEvent $e) |
|
| 26 | 1 | { |
|
| 27 | 3 | $config = $e->getApplication()->getConfig(); |
|
| 28 | |||
| 29 | 3 | if (isset($config['phpSettings']) && is_array($config['phpSettings'])) { |
|
| 30 | 3 | foreach ($config['phpSettings'] as $key => $value) { |
|
| 31 | 3 | ini_set($key, $value); |
|
| 32 | 3 | } |
|
| 33 | 3 | } |
|
| 34 | 3 | } |
|
| 35 | } |
||
| 36 |