remove Interface-Suffix

This commit is contained in:
Dominik Liebler
2019-08-19 17:07:39 +02:00
parent 27bd89dd63
commit 9cb7660704
9 changed files with 49 additions and 49 deletions

View File

@@ -5,5 +5,5 @@ namespace DesignPatterns\Behavioral\Visitor;
interface Role
{
public function accept(RoleVisitorInterface $visitor);
public function accept(RoleVisitor $visitor);
}