mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-23 17:22:41 +01:00
9 lines
127 B
PHP
9 lines
127 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Composite;
|
|
|
|
interface RenderableInterface
|
|
{
|
|
public function render(): string;
|
|
}
|