mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-28 04:03:02 +02:00
9 lines
131 B
PHP
9 lines
131 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Behavioral\Visitor;
|
|
|
|
interface Role
|
|
{
|
|
public function accept(RoleVisitorInterface $visitor);
|
|
}
|