DesignPatternsPHP/Behavioral/Command/UndoableCommandInterface.php
Dominik Liebler a6b09d6b18 PHP7 Command
2016-09-22 09:26:25 +02:00

12 lines
229 B
PHP

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