mirror of
https://github.com/itflow-org/itflow
synced 2026-03-14 01:34:51 +00:00
34 lines
970 B
PHP
34 lines
970 B
PHP
<?php
|
|
/**
|
|
* This file is part of the ZBateson\MailMimeParser project.
|
|
*
|
|
* @license http://opensource.org/licenses/bsd-license.php BSD
|
|
*/
|
|
|
|
namespace ZBateson\MailMimeParser\Header\Consumer;
|
|
|
|
use ZBateson\MailMimeParser\Header\IHeaderPart;
|
|
use ZBateson\MailMimeParser\Header\Part\MimeToken;
|
|
|
|
/**
|
|
* Allows for mime-encoded parts inside a quoted part.
|
|
*
|
|
* @author Zaahid Bateson
|
|
*/
|
|
class QuotedStringMimeLiteralPartConsumerService extends QuotedStringConsumerService
|
|
{
|
|
/**
|
|
* Constructs a LiteralPart and returns it.
|
|
*
|
|
* @param bool $isLiteral not used - everything in a quoted string is a
|
|
* literal
|
|
*/
|
|
protected function getPartForToken(string $token, bool $isLiteral) : ?IHeaderPart
|
|
{
|
|
if (!$isLiteral && \preg_match('/' . MimeToken::MIME_PART_PATTERN . '/', $token)) {
|
|
return $this->partFactory->newMimeToken($token);
|
|
}
|
|
return $this->partFactory->newToken($token, $isLiteral);
|
|
}
|
|
}
|