Files
php-flasher/Renderer/RendererInterface.php
T
2020-12-06 04:03:14 +01:00

24 lines
399 B
PHP

<?php
namespace Flasher\Prime\Renderer;
use Flasher\Prime\Envelope;
interface RendererInterface
{
/**
* @param Envelope $envelope
*
* @return string
*/
public function render(Envelope $envelope);
/**
* @param string $name
* @param array $context
*
* @return bool
*/
public function supports($name = null, array $context = array());
}