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