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\Zed\ArvatoRss;
use Spryker\Zed\Kernel\AbstractBundleConfig;
use SprykerEco\Shared\ArvatoRss\ArvatoRssConstants;
class ArvatoRssConfig extends AbstractBundleConfig
{
* @return string
public function getClientId()
return $this->get(ArvatoRssConstants::ARVATORSS_CLIENTID);
}
public function getAuthorization()
return $this->get(ArvatoRssConstants::ARVATORSS_AUTHORISATION);
* @param string $paymentMethod
*
public function getPaymentTypeMapping($paymentMethod)
$mapping = $this->get(ArvatoRssConstants::ARVATORSS_PAYMENT_TYPE_MAPPING);
return $mapping[$paymentMethod];