1: 2: 3: 4: 5: 6: 7: 8: 9: 10:
<?php namespace Angelfon\SDK; abstract class Options implements \IteratorAggregate { protected $options = array(); public function getIterator() { return new \ArrayIterator($this->options); } }