You are here

public function Braintree_Customer::__toString in Commerce Braintree 7

returns a string representation of the customer

Return value

string

File

braintree_php/lib/Braintree/Customer.php, line 428

Class

Braintree_Customer
Creates and manages Customers

Code

public function __toString() {
  return __CLASS__ . '[' . Braintree_Util::attributesToString($this->_attributes) . ']';
}