for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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\Part\MimeLiteralPartFactory;
* GenericConsumerMimeLiteralPartService uses a MimeLiteralPartFactory instead
* of a HeaderPartFactory.
* @author Zaahid Bateson
class GenericConsumerMimeLiteralPartService extends GenericConsumerService
{
public function __construct(
MimeLiteralPartFactory $partFactory,
CommentConsumerService $commentConsumerService,
QuotedStringConsumerService $quotedStringConsumerService
) {
parent::__construct(
$partFactory,
$commentConsumerService,
$quotedStringConsumerService
);
}