fix PSR-0

This commit is contained in:
Trismegiste
2013-05-11 02:50:05 +02:00
parent cfa9014906
commit 55017fb43f
5 changed files with 56 additions and 46 deletions

8
Decorator/Renderer.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
namespace DesignPatterns\Decorator;
interface Renderer
{
public function renderData();
}