Files
DesignPatternsPHP/AbstractFactory/MediaInterface.php
Dominik Liebler 3b7eb295c8 cs AbstractFactory
2013-09-09 10:45:52 +02:00

21 lines
365 B
PHP

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