snappymail/rainloop/v/0.0.0/app/libraries/MailSo/Mime/Parser/ParserInterface.php
2020-03-10 18:45:00 +01:00

34 lines
750 B
PHP

<?php
/*
* This file is part of MailSo.
*
* (c) 2014 Usenko Timur
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace MailSo\Mime\Parser;
/**
* @category MailSo
* @package Mime
* @subpackage Parser
*/
interface ParserInterface
{
public function StartParse(\MailSo\Mime\Part $oPart) : void;
public function EndParse(\MailSo\Mime\Part $oPart) : void;
public function StartParseMimePart(\MailSo\Mime\Part $oPart) : void;
public function EndParseMimePart(\MailSo\Mime\Part $oPart) : void;
public function InitMimePartHeader() : void;
public function ReadBuffer(string $sBuffer) : void;
public function WriteBody(string $sBuffer) : void;
}