14 lines
198 B
PHP

<?php
namespace DesignPatterns\AbstractFactory;
/**
* This contract is not part of the pattern, in general case, each component
* are not related
*/
interface Media
{
function render();
}