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\CrefoPayApi;
use Spryker\Zed\Kernel\AbstractBundleConfig;
use SprykerEco\Shared\CrefoPayApi\CrefoPayApiConstants;
class CrefoPayApiConfig extends AbstractBundleConfig
{
* @return string
public function getCreateTransactionActionUrl(): string
return $this->get(CrefoPayApiConstants::CREATE_TRANSACTION_ACTION_URL);
}
public function getReserveActionUrl(): string
return $this->get(CrefoPayApiConstants::RESERVE_ACTION_URL);
public function getCaptureActionUrl(): string
return $this->get(CrefoPayApiConstants::CAPTURE_ACTION_URL);
public function getCancelActionUrl(): string
return $this->get(CrefoPayApiConstants::CANCEL_ACTION_URL);
public function getRefundActionUrl(): string
return $this->get(CrefoPayApiConstants::REFUND_ACTION_URL);
public function getFinishActionUrl(): string
return $this->get(CrefoPayApiConstants::FINISH_ACTION_URL);