%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.26 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/ppaobm/vendor/swiftmailer/swiftmailer/tests/fixtures/ |
Upload File : |
<?php
class MimeEntityFixture extends Swift_Mime_SimpleMimeEntity
{
private $level;
private $string;
private $contentType;
public function __construct($level = null, $string = '', $contentType = null)
{
$this->level = $level;
$this->string = $string;
$this->contentType = $contentType;
}
public function getNestingLevel()
{
return $this->level;
}
public function toString()
{
return $this->string;
}
public function getContentType()
{
return $this->contentType;
}
// These methods are here to account for the implemented interfaces
public function getId()
{
}
public function getHeaders()
{
}
public function getBody()
{
}
public function setBody($body, $contentType = null)
{
}
public function toByteStream(Swift_InputByteStream $is)
{
}
public function charsetChanged($charset)
{
}
public function encoderChanged(Swift_Mime_ContentEncoder $encoder)
{
}
public function getChildren()
{
}
public function setChildren(array $children, $compoundLevel = null)
{
}
}