You are here

class Braintree_KeyValueNode in Commerce Braintree 7

Hierarchy

Expanded class hierarchy of Braintree_KeyValueNode

File

braintree_php/lib/Braintree/KeyValueNode.php, line 3

View source
class Braintree_KeyValueNode {
  function __construct($name) {
    $this->name = $name;
    $this->searchTerm = True;
  }
  function is($value) {
    $this->searchTerm = $value;
    return $this;
  }
  function toParam() {
    return $this->searchTerm;
  }

}

Members