Dominik Liebler 0d24d48c26
fix spelling
2019-08-22 15:31:18 +02:00

15 lines
322 B
PHP

<?php declare(strict_types=1);
namespace DesignPatterns\Behavioral\Visitor;
/**
* Note: the visitor must not choose itself which method to
* invoke, it is the visited object that makes this decision
*/
interface RoleVisitor
{
public function visitUser(User $role);
public function visitGroup(Group $role);
}