mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-13 18:05:36 +02:00
17 lines
208 B
PHP
17 lines
208 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Decorator;
|
|
|
|
/**
|
|
* Class RendererInterface
|
|
*/
|
|
interface RendererInterface
|
|
{
|
|
/**
|
|
* render data
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function renderData();
|
|
}
|