| Total Complexity | 2 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class CrefoPayDependencyProvider extends AbstractBundleDependencyProvider |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | public const SERVICE_UTIL_TEXT = 'SERVICE_UTIL_TEXT'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param \Spryker\Service\Kernel\Container $container |
||
| 26 | * |
||
| 27 | * @return \Spryker\Service\Kernel\Container |
||
| 28 | */ |
||
| 29 | public function provideServiceDependencies(Container $container): Container |
||
| 30 | { |
||
| 31 | $container = parent::provideServiceDependencies($container); |
||
| 32 | $container = $this->addUtilTextService($container); |
||
| 33 | |||
| 34 | return $container; |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param \Spryker\Service\Kernel\Container $container |
||
| 39 | * |
||
| 40 | * @return \Spryker\Service\Kernel\Container |
||
| 41 | */ |
||
| 42 | protected function addUtilTextService(Container $container): Container |
||
| 49 | } |
||
| 50 | } |
||
| 51 |