1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
-
-
-
-
-
- class Swift_Mailer_ArrayRecipientIterator
- implements Swift_Mailer_RecipientIterator
- {
-
-
-
- private $_recipients = array();
-
-
-
- public function __construct(array $recipients)
- {
- $this->_recipients = $recipients;
- }
-
-
-
- public function hasNext()
- {
- return !empty($this->_recipients);
- }
-
-
-
- public function nextRecipient()
- {
- return array_splice($this->_recipients, 0, 1);
- }
-
- }
|