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