| 1 | <?php |
||
| 8 | final class ApplicationConfigServiceProvider extends AbstractServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var ApplicationConfig |
||
| 12 | */ |
||
| 13 | private $config; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | private $prefix; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param ApplicationConfig $config |
||
| 22 | * @param string $prefix |
||
| 23 | */ |
||
| 24 | public function __construct(ApplicationConfig $config, $prefix) |
||
| 35 | |||
| 36 | public function register() |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return string |
||
| 49 | */ |
||
| 50 | private function keyPrefix() |
||
| 58 | } |
||
| 59 |