123456789101112131415161718192021222324 |
- <?php
- namespace Braintree;
- class IsNode
- {
- public function __construct($name)
- {
- $this->name = $name;
- $this->searchTerms = [];
- }
- public function is($value)
- {
- $this->searchTerms['is'] = strval($value);
- return $this;
- }
- public function toParam()
- {
- return $this->searchTerms;
- }
- }
- class_alias('Braintree\IsNode', 'Braintree_IsNode');
|