mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-31 20:20:15 +02:00
remove Interface-Suffix
This commit is contained in:
12
Behavioral/Command/UndoableCommand.php
Normal file
12
Behavioral/Command/UndoableCommand.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?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();
|
||||
}
|
Reference in New Issue
Block a user