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