DesignPatternsPHP/Behavioral/Command/UndoableCommandInterface.php
2016-01-21 22:46:28 +01:00

16 lines
321 B
PHP

<?php
namespace DesignPatterns\Behavioral\Command;
/**
* Interface UndoableCommandInterface.
*/
interface UndoableCommandInterface extends CommandInterface
{
/**
* This method is used to undo change made by command execution
* The Receiver goes in the constructor.
*/
public function undo();
}