mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 17:52:25 +01: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();
|
|
}
|