mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-09 17:36:22 +02:00
9 lines
131 B
PHP
9 lines
131 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Decorator;
|
|
|
|
interface RenderableInterface
|
|
{
|
|
public function renderData(): string;
|
|
}
|