Files
php-flasher/Renderer/RendererInterface.php
T
2020-12-02 00:57:12 +01:00

16 lines
235 B
PHP

<?php
namespace Flasher\Prime\TestsRenderer;
use Notify\Envelope;
interface RendererInterface
{
/**
* @param \Notify\Envelope $envelope
*
* @return string
*/
public function render(Envelope $envelope);
}