| 1 | <?php |
||
| 10 | class RouteTitleMethod implements AnnotatedRouteModifierInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | private $titleMethodName; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param array $values |
||
| 19 | * |
||
| 20 | * @throws \RuntimeException |
||
| 21 | */ |
||
| 22 | public function __construct(array $values) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param \Symfony\Component\Routing\Route $route |
||
| 39 | * @param \ReflectionClass $class |
||
| 40 | * @param \ReflectionMethod $method |
||
| 41 | * @param mixed $annot |
||
| 42 | * |
||
| 43 | * @throws \RuntimeException |
||
| 44 | */ |
||
| 45 | public function modifyAnnotatedRoute(Route $route, \ReflectionClass $class, \ReflectionMethod $method, $annot) |
||
| 57 | } |
||
| 58 |