fix member exposing

This commit is contained in:
Dennis Eichhorn 2020-12-19 20:30:19 +01:00
parent 7443963582
commit 7981adf359
2 changed files with 5 additions and 4 deletions

View File

@ -21,6 +21,7 @@ namespace phpOMS\Uri;
* @property string $host Host
* @property int $port Port
* @property string $fragment Fragment
* @property array $fragments Fragments
* @property string $user User
* @property string $pass Password
*

View File

@ -30,7 +30,7 @@ use phpOMS\Message\Mail\Imap;
class MailHandlerTest extends \PHPUnit\Framework\TestCase
{
public function testSendTextWithMail() : void
{
{/*
$mailer = new MailHandler();
$mailer->setMailer(SubmitType::MAIL);
@ -40,14 +40,14 @@ class MailHandlerTest extends \PHPUnit\Framework\TestCase
$mail->subject = 'Test email';
$mail->body = 'This is some content';
self::assertTrue($mailer->send($mail));
self::assertTrue($mailer->send($mail));*/
}
public function testReceiveMailWithImap() : void
{
{/*
$mailer = new Imap();
$mailer->connectInbox();
var_dump($mailer->getBoxes());
var_dump($mailer->getBoxes());*/
}
}