DesignPatternsPHP/Command/Receiver.php
Dominik Liebler 8b82ed198d cs
2013-09-13 14:19:55 +02:00

18 lines
253 B
PHP

<?php
namespace DesignPatterns\Command;
/**
* Receiver is specific service with its own contract and can be only concrete
*/
class Receiver
{
/**
* @param string $str
*/
public function write($str)
{
echo $str;
}
}