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\Service\Braintree;
use Spryker\Service\Kernel\AbstractBundleConfig;
use SprykerEco\Shared\Braintree\BraintreeConstants;
class BraintreeConfig extends AbstractBundleConfig
{
* @return string
public function getEnvironment(): string
return $this->get(BraintreeConstants::ENVIRONMENT);
}
public function getPublicKey(): string
return $this->get(BraintreeConstants::PUBLIC_KEY);
public function getPrivateKey(): string
return $this->get(BraintreeConstants::PRIVATE_KEY);
public function getMerchantId(): string
return $this->get(BraintreeConstants::MERCHANT_ID);