Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
||
19 | { |
||
20 | $controller = new CommentController( |
||
21 | $container->get('Config'), |
||
22 | $container->get(CommentTable::class), |
||
23 | $container->get('RbComment\Akismet') |
||
24 | ); |
||
25 | |||
26 | return $controller; |
||
27 | } |
||
28 | } |
||
29 |