cs Command

This commit is contained in:
Dominik Liebler
2013-09-11 16:06:03 +02:00
parent 33671aec55
commit bead52e9e9
4 changed files with 26 additions and 13 deletions

View File

@@ -11,10 +11,11 @@ namespace DesignPatterns\Command;
*/
class Receiver
{
/**
* @param string $str
*/
public function write($str)
{
echo $str;
}
}
}