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

@ -7,7 +7,7 @@ namespace DesignPatterns\Behavioral\Command;
* This concrete command calls "print" on the Receiver, but an external
* invoker just knows that it can call "execute"
*/
class HelloCommand implements CommandInterface
class HelloCommand implements Command
{
/**
* @var Receiver