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