class Braintree_PartialMatchNode in Commerce Braintree 7
Hierarchy
- class \Braintree_IsNode
- class \Braintree_EqualityNode
- class \Braintree_PartialMatchNode
- class \Braintree_EqualityNode
Expanded class hierarchy of Braintree_PartialMatchNode
File
- braintree_php/
lib/ Braintree/ PartialMatchNode.php, line 3
View source
class Braintree_PartialMatchNode extends Braintree_EqualityNode {
function startsWith($value) {
$this->searchTerms["starts_with"] = strval($value);
return $this;
}
function endsWith($value) {
$this->searchTerms["ends_with"] = strval($value);
return $this;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Braintree_EqualityNode:: |
function | |||
Braintree_IsNode:: |
function | |||
Braintree_IsNode:: |
function | |||
Braintree_IsNode:: |
function | |||
Braintree_PartialMatchNode:: |
function | |||
Braintree_PartialMatchNode:: |
function |