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

18
Decorator/Webservice.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
namespace DesignPatterns\Decorator;
class Webservice implements Renderer
{
protected $_data;
public function __construct($data)
{
$this->_data = $data;
}
public function renderData()
{
return $this->_data;
}
}