| 1 | <?php |
||
| 12 | class ConfigResolver implements KMBConfigResolverInterface |
||
| 13 | { |
||
| 14 | /** @var ConfigResolverInterface $ezConfigResolver */ |
||
| 15 | protected $ezConfigResolver; |
||
| 16 | |||
| 17 | protected $container; |
||
| 18 | |||
| 19 | public function __construct(ConfigResolverInterface $ezConfigResolver, ContainerInterface $container) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param string $paramName |
||
| 27 | * @param string $scope |
||
| 28 | * @return mixed |
||
| 29 | * @throws \Exception |
||
| 30 | */ |
||
| 31 | public function getParameter($paramName, $scope = null) |
||
| 44 | } |
||
| 45 |