mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-26 03:02:56 +02:00
12 lines
236 B
PHP
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();
|
|
}
|