for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MtMail - e-mail module for Zend Framework
*
* @link http://github.com/mtymek/MtMail
* @copyright Copyright (c) 2013-2017 Mateusz Tymek
* @license BSD 2-Clause
*/
namespace MtMailTest\Test;
use MtMail\Template\HtmlTemplateInterface;
use MtMail\Template\LayoutProviderInterface;
class LayoutProviderTemplate implements HtmlTemplateInterface, LayoutProviderInterface
{
* @return string
public function getHtmlTemplateName()
return 'template';
}
public function getLayout()
return 'specific-layout.phtml';