Your IP : 216.73.216.220


Current Path : /var/www/www.indacotrentino.com/www/vendor/braintree/braintree_php/lib/Braintree/
Upload File :
Current File : /var/www/www.indacotrentino.com/www/vendor/braintree/braintree_php/lib/Braintree/TextNode.php

<?php

namespace Braintree;

/**
 * Braintree TextNode
 * TextNode is an object for text elements returned from the Braintree API
 */
class TextNode extends PartialMatchNode
{
    /**
     * Sets the value of the object's "contains" key to a string of $value
     *
     * @param object $value to have its string value set in $this
     *
     * @return object
     */
    public function contains($value)
    {
        $this->searchTerms["contains"] = strval($value);
        return $this;
    }
}