mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-20 13:30:57 +02:00
14 lines
198 B
PHP
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();
|
|
}
|