mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-12 01:15:29 +02:00
12 lines
229 B
PHP
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();
|
|
}
|