1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
-
- class Services_Twilio_Page
- implements IteratorAggregate
- {
-
- protected $items;
-
- public function __construct($page, $name, $next_page_uri = null)
- {
- $this->page = $page;
- $this->items = $page->{$name};
- $this->next_page_uri = $next_page_uri;
- }
-
- public function getItems()
- {
- return $this->items;
- }
-
- public function __get($prop)
- {
- return $this->page->$prop;
- }
-
- public function getIterator()
- {
- return $this->getItems();
- }
- }
|