14 lines
235 B
PHP
14 lines
235 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
namespace Twilio;
|
||
|
|
||
|
|
||
|
abstract class Options implements \IteratorAggregate {
|
||
|
protected $options = [];
|
||
|
|
||
|
public function getIterator(): \Traversable {
|
||
|
return new \ArrayIterator($this->options);
|
||
|
}
|
||
|
}
|