summaryrefslogtreecommitdiffstats
path: root/Twilio/Options.php
blob: 45e3d7fc3c8cae9933c0284299a5e87ded9811c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php


namespace Twilio;


abstract class Options implements \IteratorAggregate {
    protected $options = array();

    public function getIterator() {
        return new \ArrayIterator($this->options);
    }
}