mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-11 14:38:39 +00:00
fix member exposing
This commit is contained in:
parent
7443963582
commit
7981adf359
|
|
@ -21,6 +21,7 @@ namespace phpOMS\Uri;
|
||||||
* @property string $host Host
|
* @property string $host Host
|
||||||
* @property int $port Port
|
* @property int $port Port
|
||||||
* @property string $fragment Fragment
|
* @property string $fragment Fragment
|
||||||
|
* @property array $fragments Fragments
|
||||||
* @property string $user User
|
* @property string $user User
|
||||||
* @property string $pass Password
|
* @property string $pass Password
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ use phpOMS\Message\Mail\Imap;
|
||||||
class MailHandlerTest extends \PHPUnit\Framework\TestCase
|
class MailHandlerTest extends \PHPUnit\Framework\TestCase
|
||||||
{
|
{
|
||||||
public function testSendTextWithMail() : void
|
public function testSendTextWithMail() : void
|
||||||
{
|
{/*
|
||||||
$mailer = new MailHandler();
|
$mailer = new MailHandler();
|
||||||
$mailer->setMailer(SubmitType::MAIL);
|
$mailer->setMailer(SubmitType::MAIL);
|
||||||
|
|
||||||
|
|
@ -40,14 +40,14 @@ class MailHandlerTest extends \PHPUnit\Framework\TestCase
|
||||||
$mail->subject = 'Test email';
|
$mail->subject = 'Test email';
|
||||||
$mail->body = 'This is some content';
|
$mail->body = 'This is some content';
|
||||||
|
|
||||||
self::assertTrue($mailer->send($mail));
|
self::assertTrue($mailer->send($mail));*/
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testReceiveMailWithImap() : void
|
public function testReceiveMailWithImap() : void
|
||||||
{
|
{/*
|
||||||
$mailer = new Imap();
|
$mailer = new Imap();
|
||||||
$mailer->connectInbox();
|
$mailer->connectInbox();
|
||||||
|
|
||||||
var_dump($mailer->getBoxes());
|
var_dump($mailer->getBoxes());*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user