mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 17:52:25 +01:00
20 lines
240 B
PHP
20 lines
240 B
PHP
<?php
|
|
|
|
/*
|
|
* DesignPatternPHP
|
|
*/
|
|
|
|
namespace DesignPatterns\Command;
|
|
|
|
/**
|
|
* Receiver is specific service with its own contract and can be only concrete
|
|
*/
|
|
class Receiver
|
|
{
|
|
|
|
public function write($str)
|
|
{
|
|
echo $str;
|
|
}
|
|
|
|
} |