1 | <?php |
||
18 | class ResolverVisitorMethod implements ResolverVisitorMethodInterface |
||
19 | { |
||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $prefix; |
||
24 | |||
25 | /** |
||
26 | * @param string $prefix |
||
27 | */ |
||
28 | public function __construct($prefix = 'visit') |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | public function resolveVisiteeClass(\ReflectionMethod $method) |
||
50 | |||
51 | /** |
||
52 | * @param \ReflectionParameter $visiteeParameter |
||
53 | * |
||
54 | * @return bool |
||
55 | */ |
||
56 | private function isVisiteeParameter(\ReflectionParameter $visiteeParameter) |
||
61 | } |
||
62 |