| Total Complexity | 3 | 
| Total Lines | 53 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 14 | class PayoneDependencyProvider extends AbstractDependencyProvider  | 
            ||
| 15 | { | 
            ||
| 16 | /**  | 
            ||
| 17 | * @var string  | 
            ||
| 18 | */  | 
            ||
| 19 | public const SERVICE_ZED = 'service zed';  | 
            ||
| 20 | |||
| 21 | /**  | 
            ||
| 22 | * @var string  | 
            ||
| 23 | */  | 
            ||
| 24 | public const SERVICE_UTIL_ENCODING = 'SERVICE_UTIL_ENCODING';  | 
            ||
| 25 | |||
| 26 | /**  | 
            ||
| 27 | * @param \Spryker\Client\Kernel\Container $container  | 
            ||
| 28 | *  | 
            ||
| 29 | * @return \Spryker\Client\Kernel\Container  | 
            ||
| 30 | */  | 
            ||
| 31 | public function provideServiceLayerDependencies(Container $container): Container  | 
            ||
| 32 |     { | 
            ||
| 33 | $container = parent::provideServiceLayerDependencies($container);  | 
            ||
| 34 | |||
| 35 | $this->addZedService($container);  | 
            ||
| 36 | $this->addUtilEncodingService($container);  | 
            ||
| 37 | |||
| 38 | return $container;  | 
            ||
| 39 | }  | 
            ||
| 40 | |||
| 41 | /**  | 
            ||
| 42 | * @param \Spryker\Client\Kernel\Container $container  | 
            ||
| 43 | *  | 
            ||
| 44 | * @return \Spryker\Client\Kernel\Container  | 
            ||
| 45 | */  | 
            ||
| 46 | protected function addZedService(Container $container): Container  | 
            ||
| 53 | }  | 
            ||
| 54 | |||
| 55 | /**  | 
            ||
| 56 | * @param \Spryker\Client\Kernel\Container $container  | 
            ||
| 57 | *  | 
            ||
| 58 | * @return \Spryker\Client\Kernel\Container  | 
            ||
| 59 | */  | 
            ||
| 60 | protected function addUtilEncodingService(Container $container): Container  | 
            ||
| 67 | }  | 
            ||
| 68 | }  | 
            ||
| 69 |