| 1 | <?php |
||
| 17 | class ChapiConfigLoader implements ChapiConfigLoaderInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var ContainerBuilder |
||
| 21 | */ |
||
| 22 | private $oContainer; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var ChapiConfigInterface |
||
| 26 | */ |
||
| 27 | private $oConfig; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * ChapiConfigLoader constructor. |
||
| 31 | * @param ContainerBuilder $oContainer |
||
| 32 | * @param ChapiConfigInterface $oConfig |
||
| 33 | */ |
||
| 34 | public function __construct(ContainerBuilder $oContainer, ChapiConfigInterface $oConfig) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @inheritdoc |
||
| 42 | */ |
||
| 43 | public function loadProfileParameters() |
||
| 65 | } |