sfcod/email-engine

View on GitHub
Example/TestEmailOptions.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SfCod\EmailEngineBundle\Example;

use SfCod\EmailEngineBundle\Template\TemplateOptionsInterface;

/**
 * Class TestEmailOptions
 *
 * @author Virchenko Maksim <muslim1992@gmail.com>
 *
 * @package SfCod\EmailEngineBundle\Example
 */
class TestEmailOptions implements TemplateOptionsInterface
{
    /**
     * @var string
     */
    public $message;

    /**
     * @var string
     */
    public $filePath;

    /**
     * TestArguments constructor.
     *
     * @param string $message
     * @param string $filePath
     */
    public function __construct(string $message, string $filePath)
    {
        $this->message = $message;
        $this->filePath = $filePath;
    }
}