Files
DesignPatternsPHP/AbstractFactory/Media.php
2013-09-03 14:42:15 +02:00

21 lines
347 B
PHP

<?php
namespace DesignPatterns\AbstractFactory;
/**
* Interface Media
*
* This contract is not part of the pattern, in general case, each component
* are not related
*/
interface Media
{
/**
* some crude rendering from JSON or html output (depended on concrete class)
*
* @return string
*/
function render();
}