mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-18 15:08:54 +02:00
11 lines
144 B
PHP
11 lines
144 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Composite;
|
|
|
|
interface Renderable
|
|
{
|
|
public function render(): string;
|
|
}
|