public function Braintree_Collection::add in Commerce Braintree 7
Add a value into the collection
Parameters
string $value:
File
- braintree_php/
lib/ Braintree/ Collection.php, line 33
Class
- Braintree_Collection
- Generic Collection class
Code
public function add($value) {
$this->_collection[] = $value;
}