| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 47 | public function set(string $container, string $object, ConfigInterface $config): AppInterface |
||
| 48 | { |
||
| 49 | $objectConfig = $config->get($object); |
||
| 50 | |||
| 51 | if (null !== $objectConfig) { |
||
| 52 | $class = '\\DrMVC\\' . $object; |
||
| 53 | $this->setContainer($container, new $class($config)); |
||
| 54 | } |
||
| 55 | |||
| 56 | return $this; |
||
| 57 | } |
||
| 83 |