| 1 | <?php |
||
| 14 | abstract class AbstractAttachment implements AttachmentInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var TemplateOptionsInterface |
||
| 18 | */ |
||
| 19 | protected $options; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * AttachmentInterface constructor. |
||
| 23 | * |
||
| 24 | * @param TemplateOptionsInterface $options |
||
| 25 | */ |
||
| 26 | public function __construct(TemplateOptionsInterface $options) |
||
| 30 | } |
||
| 31 |