mirror of
https://github.com/saccas/mjml-typo3.git
synced 2024-11-14 07:36:10 +01:00
Daniel Siepmann
eba401aa9f
Add all dependencies to run tests. Configure tests as composer task. Add tests to travis. Adjust code to make him exchangeable and testable.
16 lines
279 B
PHP
16 lines
279 B
PHP
<?php
|
|
namespace Saccas\Mjml\Domain\Renderer;
|
|
|
|
/**
|
|
* Defines API of possible renderers.
|
|
*/
|
|
interface RendererInterface
|
|
{
|
|
/**
|
|
* Convert mjml strings into html.
|
|
*
|
|
* @param string $mjml
|
|
* @return string
|
|
*/
|
|
public function getHtmlFromMjml($mjml);
|
|
}
|