Files
DesignPatternsPHP/Behavioral/Command/UndoableCommand.php
2019-08-19 18:11:49 +02:00

12 lines
236 B
PHP

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