KeyValueNode.php in Commerce Braintree 7
File
braintree_php/lib/Braintree/KeyValueNode.phpView source
<?php
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;
}
}
Classes
Name | Description |
---|---|
Braintree_KeyValueNode |