IsNode.php in Commerce Braintree 7
File
braintree_php/lib/Braintree/IsNode.phpView source
<?php
class Braintree_IsNode {
function __construct($name) {
$this->name = $name;
$this->searchTerms = array();
}
function is($value) {
$this->searchTerms['is'] = strval($value);
return $this;
}
function toParam() {
return $this->searchTerms;
}
}
Classes
Name | Description |
---|---|
Braintree_IsNode |