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\Heidelpay;
use Spryker\Yves\Kernel\AbstractBundleConfig;
use SprykerEco\Shared\Heidelpay\HeidelpayConstants;
class HeidelpayConfig extends AbstractBundleConfig implements HeidelpayConfigInterface
{
* @return string
public function getYvesCheckoutPaymentStepPath(): string
return $this->get(HeidelpayConstants::CONFIG_YVES_CHECKOUT_PAYMENT_STEP_PATH);
}
public function getYvesCheckoutPaymentFailedUrl(): string
return $this->get(HeidelpayConstants::CONFIG_YVES_CHECKOUT_PAYMENT_FAILED_URL);
public function getYvesCheckoutSummaryStepUrl(): string
return $this->get(HeidelpayConstants::CONFIG_YVES_CHECKOUT_SUMMARY_STEP_URL);
public function getYvesInitializePaymentUrl(): string
return $this->get(HeidelpayConstants::CONFIG_YVES_CHECKOUT_EASYCREDIT_INITIALIZE_PAYMENT_URL);
public function getYvesCheckoutSuccessUrl(): string
return $this->get(HeidelpayConstants::CONFIG_YVES_CHECKOUT_SUCCESS_URL);
public function getYvesRegistrationSuccessUrl(): string
return $this->get(HeidelpayConstants::CONFIG_YVES_CHECKOUT_REGISTRATION_SUCCESS_URL);
public function getEasyCreditLogoUrl(): string
return $this->get(HeidelpayConstants::CONFIG_EASY_CREDIT_LOGO_URL);
public function getEasyCreditInfoLink(): string
return $this->get(HeidelpayConstants::CONFIG_EASY_CREDIT_INFO_LINK);