Your IP : 216.73.216.95


Current Path : /var/www/storage/vendor/braintree/braintree_php/lib/Braintree/
Upload File :
Current File : /var/www/storage/vendor/braintree/braintree_php/lib/Braintree/KeyValueNode.php

<?php

class Braintree_KeyValueNode
{
    function __construct($name)
    {
        $this->name = $name;
        $this->searchTerm = True;

    }

    function is($value)
    {
        $this->searchTerm = $value;
        return $this;
    }

    function toParam()
    {
        return $this->searchTerm;
    }
}