mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-06 06:25:48 +02:00
47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Behavioral\Command;
|
|
|
|
/**
|
|
* This concrete command tweaks receiver to add current date to messages
|
|
* invoker just knows that it can call "execute"
|
|
*/
|
|
class AddMessageDateCommand implements UndoableCommand
|
|
{
|
|
/**
|
|
* @var Receiver
|
|
*/
|
|
private $output;
|
|
|
|
/**
|
|
* Each concrete command is built with different receivers.
|
|
* There can be one, many or completely no receivers, but there can be other commands in the parameters.
|
|
*
|
|
* @param Receiver $console
|
|
*/
|
|
public function __construct(Receiver $console)
|
|
{
|
|
$this->output = $console;
|
|
}
|
|
|
|
/**
|
|
* Execute and make receiver to enable displaying messages date.
|
|
*/
|
|
public function execute()
|
|
{
|
|
// sometimes, there is no receiver and this is the command which
|
|
// does all the work
|
|
$this->output->enableDate();
|
|
}
|
|
|
|
/**
|
|
* Undo the command and make receiver to disable displaying messages date.
|
|
*/
|
|
public function undo()
|
|
{
|
|
// sometimes, there is no receiver and this is the command which
|
|
// does all the work
|
|
$this->output->disableDate();
|
|
}
|
|
}
|