1 | <?php |
||
24 | class NotificationFactory implements FactoryInterface |
||
25 | { |
||
26 | /** |
||
27 | * Create new Notification object |
||
28 | * |
||
29 | * @param ContainerInterface $container |
||
30 | * @param string $requestedName |
||
31 | * @param array|null $options |
||
32 | * @return Notification |
||
33 | */ |
||
34 | public function __invoke( ContainerInterface $container, $requestedName, array $options = null ) |
||
47 | } |
||
48 |