remove Interface-Suffix

This commit is contained in:
Dominik Liebler
2019-08-19 16:54:21 +02:00
parent 132de8e34e
commit b72515a9af
9 changed files with 55 additions and 38 deletions

View 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();
}