remove Interface-Suffix

This commit is contained in:
Dominik Liebler
2019-08-19 17:12:29 +02:00
parent dba45b8098
commit 963041982e
7 changed files with 9 additions and 32 deletions

View File

@@ -0,0 +1,9 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Structural\Composite;
interface Renderable
{
public function render(): string;
}