Braintree\MerchantAccount::find PHP Method

find() public static method

public static find ( $merchant_account_id )
    public static function find($merchant_account_id)
    {
        return Configuration::gateway()->merchantAccount()->find($merchant_account_id);
    }

Usage Example

 public function testFind_throwsIfNotFound()
 {
     $this->setExpectedException('Braintree\\Exception\\NotFound', 'merchant account with id does-not-exist not found');
     Braintree\MerchantAccount::find('does-not-exist');
 }
All Usage Examples Of Braintree\MerchantAccount::find