cs Visitor

This commit is contained in:
Dominik Liebler
2013-09-12 11:20:10 +02:00
parent af442a9980
commit 032cc57cf6
6 changed files with 20 additions and 28 deletions

View File

@@ -9,7 +9,6 @@ namespace DesignPatterns\Visitor;
*/
class User extends Role
{
/**
* @var string
*/
@@ -30,6 +29,4 @@ class User extends Role
{
return "User " . $this->name;
}
}