Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/braintree/braintree_php/lib/Braintree/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/braintree/braintree_php/lib/Braintree/EndsWithNode.php

<?php
namespace Braintree;

class EndsWithNode
{
    public function __construct($name)
    {
        $this->name = $name;
        $this->searchTerms = [];
    }

    public function endsWith($value)
    {
        $this->searchTerms["ends_with"] = strval($value);
        return $this;
    }

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