13 lines
212 B
PHP
Executable File
13 lines
212 B
PHP
Executable File
<?php
|
|
|
|
|
|
namespace Twilio;
|
|
|
|
|
|
abstract class Options implements \IteratorAggregate {
|
|
protected $options = array();
|
|
|
|
public function getIterator() {
|
|
return new \ArrayIterator($this->options);
|
|
}
|
|
} |