Files
DesignPatternsPHP/Behavioral/Command/UndoableCommandInterface.php
2019-08-17 21:58:04 +02:00

13 lines
254 B
PHP

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