1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace Braintree;
- class MultipleValueOrTextNode extends MultipleValueNode
- {
- public function __construct($name)
- {
- parent::__construct($name);
- $this->textNode = new TextNode($name);
- }
- public function contains($value)
- {
- $this->textNode->contains($value);
- return $this;
- }
- public function endsWith($value)
- {
- $this->textNode->endsWith($value);
- return $this;
- }
- public function is($value)
- {
- $this->textNode->is($value);
- return $this;
- }
- public function isNot($value)
- {
- $this->textNode->isNot($value);
- return $this;
- }
- public function startsWith($value)
- {
- $this->textNode->startsWith($value);
- return $this;
- }
- public function toParam()
- {
- return array_merge(parent::toParam(), $this->textNode->toParam());
- }
- }
- class_alias('Braintree\MultipleValueOrTextNode', 'Braintree_MultipleValueOrTextNode');
|