public static function Braintree_Configuration::merchantId in Commerce Braintree 7
16 calls to Braintree_Configuration::merchantId()
- Braintree_Configuration::merchantPath in braintree_php/
lib/ Braintree/ Configuration.php - sets the merchant path based on merchant ID
- Braintree_ConfigurationTest::teardown in braintree_php/
tests/ unit/ ConfigurationTest.php - Braintree_ConfigurationTest::testMerchantId in braintree_php/
tests/ unit/ ConfigurationTest.php - @expectedException Braintree_Exception_Configuration @expectedExceptionMessage merchantId needs to be set.
- Braintree_ConfigurationTest::testMerchantPath in braintree_php/
tests/ unit/ ConfigurationTest.php - Braintree_ConfigurationTest::testmerchantUrl in braintree_php/
tests/ unit/ ConfigurationTest.php
File
- braintree_php/
lib/ Braintree/ Configuration.php, line 155
Class
- Braintree_Configuration
- acts as a registry for config data.
Code
public static function merchantId($value = null) {
return self::setOrGet(__FUNCTION__, $value);
}