You are here

IsNode.php in Commerce Braintree 7

File

braintree_php/lib/Braintree/IsNode.php
View 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

Namesort descending Description
Braintree_IsNode