Your IP : 216.73.216.43


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/RangeNode.php

<?php

namespace Braintree;

/**
 * Braintree RangeNode
 * RangeNode is an object for numerical elements returned from the Braintree API
 */
class RangeNode
{
    public $name;
    public $searchTerms;

    // phpcs:ignore PEAR.Commenting.FunctionComment.Missing
    public function __construct($name)
    {
        $this->name = $name;
        $this->searchTerms = [];
    }

    /**
     * Sets the "min" value for search terms.
     *
     * @param string $value to be set for search terms
     *
     * @return object
     */
    public function greaterThanOrEqualTo($value)
    {
        $this->searchTerms['min'] = $value;
        return $this;
    }

    /**
     * Sets the "mixn" value for search terms.
     *
     * @param string $value to be set for search terms
     *
     * @return object
     */
    public function lessThanOrEqualTo($value)
    {
        $this->searchTerms['max'] = $value;
        return $this;
    }

    /**
     * Sets the "is" value for search terms.
     *
     * @param string $value to be set for search terms
     *
     * @return object
     */
    public function is($value)
    {
        $this->searchTerms['is'] = $value;
        return $this;
    }

    /**
     * Sets the "min" and "max" value for search terms.
     *
     * @param string $min minimum value to be set for search terms
     * @param string $max maximum value to be set for search terms
     *
     * @return object
     */
    public function between($min, $max)
    {
        return $this->greaterThanOrEqualTo($min)->lessThanOrEqualTo($max);
    }

    /**
     * To be used as a parameter
     *
     * @return object search terms
     */
    public function toParam()
    {
        return $this->searchTerms;
    }
}