mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-23 17:22:41 +01:00
18 lines
264 B
PHP
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;
|
|
}
|
|
}
|