Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function process(Application $app, ReflectionClass $reflectionClass) |
||
28 | { |
||
29 | $controllerCollection = $app['controllers_factory']; |
||
30 | /** @var AnnotationService $annotationService */ |
||
31 | $annotationService = $app['annot']; |
||
32 | $annotationService->processClassAnnotations($reflectionClass, $controllerCollection); |
||
33 | $annotationService->processMethodAnnotations($reflectionClass, $controllerCollection); |
||
34 | $app->mount($this->prefix, $controllerCollection); |
||
35 | } |
||
36 | |||
43 | } |