mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-30 03:30:14 +02:00
61 lines
1.2 KiB
PHP
61 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace DesignPatterns\Behavioral\Mediator;
|
|
|
|
/**
|
|
* Mediator is the concrete Mediator for this design pattern
|
|
*
|
|
* In this example, I have made a "Hello World" with the Mediator Pattern
|
|
*/
|
|
class Mediator implements MediatorInterface
|
|
{
|
|
/**
|
|
* @var Subsystem\Server
|
|
*/
|
|
private $server;
|
|
|
|
/**
|
|
* @var Subsystem\Database
|
|
*/
|
|
private $database;
|
|
|
|
/**
|
|
* @var Subsystem\Client
|
|
*/
|
|
private $client;
|
|
|
|
/**
|
|
* @param Subsystem\Database $database
|
|
* @param Subsystem\Client $client
|
|
* @param Subsystem\Server $server
|
|
*/
|
|
public function __construct(Subsystem\Database $database, Subsystem\Client $client, Subsystem\Server $server)
|
|
{
|
|
$this->database = $database;
|
|
$this->server = $server;
|
|
$this->client = $client;
|
|
|
|
$this->database->setMediator($this);
|
|
$this->server->setMediator($this);
|
|
$this->client->setMediator($this);
|
|
}
|
|
|
|
public function makeRequest()
|
|
{
|
|
$this->server->process();
|
|
}
|
|
|
|
public function queryDb(): string
|
|
{
|
|
return $this->database->getData();
|
|
}
|
|
|
|
/**
|
|
* @param string $content
|
|
*/
|
|
public function sendResponse($content)
|
|
{
|
|
$this->client->output($content);
|
|
}
|
|
}
|