From 135b921db75da5995eab7e36393ecd4d2b0bc66f Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Tue, 4 Nov 2014 21:33:05 -0500 Subject: Switch to composer --- .../Swift/Mailer/ArrayRecipientIterator.php | 55 ---------------------- 1 file changed, 55 deletions(-) delete mode 100644 vendor/swiftmailer/classes/Swift/Mailer/ArrayRecipientIterator.php (limited to 'vendor/swiftmailer/classes/Swift/Mailer/ArrayRecipientIterator.php') diff --git a/vendor/swiftmailer/classes/Swift/Mailer/ArrayRecipientIterator.php b/vendor/swiftmailer/classes/Swift/Mailer/ArrayRecipientIterator.php deleted file mode 100644 index d02e1846..00000000 --- a/vendor/swiftmailer/classes/Swift/Mailer/ArrayRecipientIterator.php +++ /dev/null @@ -1,55 +0,0 @@ -_recipients = $recipients; - } - - /** - * Returns true only if there are more recipients to send to. - * - * @return bool - */ - public function hasNext() - { - return !empty($this->_recipients); - } - - /** - * Returns an array where the keys are the addresses of recipients and the - * values are the names. e.g. ('foo@bar' => 'Foo') or ('foo@bar' => NULL) - * - * @return array - */ - public function nextRecipient() - { - return array_splice($this->_recipients, 0, 1); - } -} -- cgit v1.2.3