| 1 | <?php |
||
| 18 | trait VisiteeTrait |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @param VisitorInterface $visitor |
||
| 22 | * |
||
| 23 | * @return mixed |
||
| 24 | */ |
||
| 25 | public function accept(VisitorInterface $visitor) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param VisiteeInterface $visitee |
||
| 32 | * @param VisitorInterface $visitor |
||
| 33 | * @param array $args |
||
| 34 | * |
||
| 35 | * @return mixed |
||
| 36 | */ |
||
| 37 | protected function delegateAccept(VisiteeInterface $visitee, VisitorInterface $visitor, array $args) |
||
| 43 | } |
||
| 44 |