Files
DesignPatternsPHP/Behavioral/Command/Receiver.php
2015-12-21 07:28:20 -05:00

18 lines
265 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;
}
}