PHP7 Composite

This commit is contained in:
Dominik Liebler
2016-09-22 20:44:28 +02:00
parent 72f32359c6
commit 320dc3c6bf
7 changed files with 41 additions and 63 deletions

View File

@@ -0,0 +1,8 @@
<?php
namespace DesignPatterns\Structural\Composite;
interface RenderableInterface
{
public function render(): string;
}