mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-22 15:51:13 +02:00
13 lines
254 B
PHP
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();
|
|
}
|