This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
This commit is contained in:
Scrutinizer Auto-Fixer 2015-05-03 21:29:23 +00:00
Родитель 14f165d11b
Коммит 3a7fdc31bf
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -85,10 +85,16 @@ abstract class AbstractTest extends \PHPUnit_Framework_TestCase {
return self::$account;
}
/**
* @param string $mailbox
*/
private static function deleteMailbox($mailbox) {
self::$account->deleteMailbox($mailbox);
}
/**
* @param string $name
*/
public function existsMailBox($name) {
$mb = $this->getTestAccount()->getMailbox($name);
try {