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