1 | <?php |
||
9 | final class CommentFactory implements FactoryInterface |
||
10 | { |
||
11 | /** |
||
12 | * @param ContainerInterface $container |
||
13 | * @param string $requestedName |
||
14 | * @param array|null $options |
||
15 | * |
||
16 | * @return Comment |
||
17 | */ |
||
18 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
||
27 | } |
||
28 |