1 | <?php |
||
20 | class TokensReplacementAnnotationReader implements AnnotationReader |
||
21 | { |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | private static $regex = '/^\@tokensreplacement\s+(.+)$/i'; |
||
26 | |||
27 | /** |
||
28 | * Loads step callees (if exist) associated with specific method. |
||
29 | * |
||
30 | * @param string $contextClass |
||
31 | * @param ReflectionMethod $method |
||
32 | * @param string $docLine |
||
33 | * @param string $description |
||
34 | * |
||
35 | * @return null|RuntimeTokensReplacement |
||
36 | */ |
||
37 | public function readCallee($contextClass, ReflectionMethod $method, $docLine, $description) |
||
48 | } |
||
49 |