mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-11 08:24:50 +03:00
34 lines
750 B
PHP
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;
|
|
}
|