for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MIT License
* For full license information, please view the LICENSE file that was distributed with this source code.
*/
namespace SprykerEco\Yves\AfterPay;
use Spryker\Yves\Kernel\AbstractBundleDependencyProvider;
use Spryker\Yves\Kernel\Container;
* @method \SprykerEco\Yves\AfterPay\AfterPayConfig getConfig()
class AfterPayDependencyProvider extends AbstractBundleDependencyProvider
{
* @param \Spryker\Yves\Kernel\Container $container
*
* @return \Spryker\Yves\Kernel\Container
public function provideDependencies(Container $container): Container
$container = parent::provideDependencies($container);
return $container;
}