Seditio Source
Root |
./othercms/xenForo 2.2.8/src/vendor/braintree/braintree_php/lib/Braintree/IsNode.php
<?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');