2014-03-24 09:14:05 -03:00

18 lines
264 B
PHP

<?php
namespace DesignPatterns\Behavioral\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;
}
}