File "Options.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/twilio/sdk/src/Twilio/Options.php
File size: 222 bytes
MIME-type: text/x-php
Charset: utf-8

<?php


namespace Twilio;


abstract class Options implements \IteratorAggregate {
    protected $options = [];

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