mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
22 lines
384 B
PHP
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');
|
|
}
|