TextNode.php 257 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 <?php namespace Braintree; class TextNode extends PartialMatchNode { public function contains($value) { $this->searchTerms["contains"] = strval($value); return $this; } } class_alias('Braintree\TextNode', 'Braintree_TextNode');