Files
SIGE-WEB-snapshot/wp-content/plugins/modern-events-calendar-lite/app/api/Twilio/Options.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);
}
}