Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge pull request zendframework/zendframework#4699 from neeckeloo/ad…
Browse files Browse the repository at this point in the history
…d-use-statements

Add use statements
  • Loading branch information
weierophinney committed Jun 28, 2013
2 parents 2ebeab3 + c6c488c commit 661129e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Storage/Writable/Maildir.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

namespace Zend\Mail\Storage\Writable;

use RecursiveIteratorIterator;
use Zend\Mail\Exception as MailException;
use Zend\Mail\Storage;
use Zend\Mail\Storage\Exception as StorageException;
Expand Down Expand Up @@ -754,7 +755,7 @@ protected function _calculateMaildirsize()
}
}

$folders = new \RecursiveIteratorIterator($this->getFolders(), \RecursiveIteratorIterator::SELF_FIRST);
$folders = new RecursiveIteratorIterator($this->getFolders(), RecursiveIteratorIterator::SELF_FIRST);
foreach ($folders as $folder) {
$subdir = $folder->getGlobalName();
if ($subdir == 'INBOX') {
Expand Down

0 comments on commit 661129e

Please sign in to comment.