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