for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MIT License
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
*/
namespace SprykerEco\Zed\Ratepay;
use Spryker\Zed\Kernel\AbstractBundleConfig;
use SprykerEco\Shared\Ratepay\RatepayConfig as SharedRatepayConfig;
use SprykerEco\Shared\Ratepay\RatepayConstants;
class RatepayConfig extends AbstractBundleConfig
{
* @return string
public function getTransactionGatewayUrl()
return $this->get(RatepayConstants::RATEPAY_API_URL);
}
public function getProfileId()
return $this->get(RatepayConstants::PROFILE_ID);
public function getSecurityCode()
return $this->get(RatepayConstants::SECURITY_CODE);
public function getSystemId()
return $this->get(RatepayConstants::SYSTEM_ID);
public function getSnippedId()
return $this->get(RatepayConstants::SNIPPET_ID);
public function getShopId()
return $this->get(RatepayConstants::SHOP_ID);
public function getTranslationFilePath()
return __DIR__ . DIRECTORY_SEPARATOR . SharedRatepayConfig::GLOSSARY_FILE_PATH;