for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SfCod\EmailEngineBundle\Template\Attachments;
use SfCod\EmailEngineBundle\Template\TemplateOptionsInterface;
/**
* Class AbstractAttachment
*
* @author Virchenko Maksim <[email protected]>
* @package SfCod\EmailEngineBundle\Template\Attachments
*/
abstract class AbstractAttachment implements AttachmentInterface
{
* @var TemplateOptionsInterface
protected $options;
* AttachmentInterface constructor.
* @param TemplateOptionsInterface $options
public function __construct(TemplateOptionsInterface $options)
$this->options = $options;
}