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

@@ -3,11 +3,10 @@
namespace DesignPatterns\Visitor;
/**
* An example of a Visitee : Group
* An example of a Visitor: Group
*/
class Group extends Role
{
/**
* @var string
*/
@@ -28,5 +27,4 @@ class Group extends Role
{
return "Group: " . $this->name;
}
}