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