public function Braintree_Collection::offsetExists in Commerce Braintree 7
Determine if offset exists Implements ArrayAccess
Parameters
integer $offset:
Return value
boolean
See also
exists
File
- braintree_php/
lib/ Braintree/ Collection.php, line 154
Class
- Braintree_Collection
- Generic Collection class
Code
public function offsetExists($offset) {
return $this
->exists($offset);
}