Files
php-flasher/src/Prime/Presenter/PresenterInterface.php
T
KHOUBZA Younes 598da9586d update namespace
2020-12-03 09:15:47 +01:00

22 lines
384 B
PHP

<?php
namespace Flasher\Prime\Presenter;
interface PresenterInterface
{
/**
* @param string|null $name
* @param array $context
*
* @return bool
*/
public function supports($name = null, array $context = array());
/**
* @param string $criteria
*
* @return string
*/
public function render($criteria = 'default');
}