1 | <?php |
||
15 | abstract class AbstractAcMailerFactory implements AbstractFactoryInterface |
||
16 | { |
||
17 | const ACMAILER_PART = 'acmailer'; |
||
18 | const SPECIFIC_PART = ''; |
||
19 | |||
20 | /** |
||
21 | * Can the factory create an instance for the service? |
||
22 | * |
||
23 | * @param ContainerInterface $container |
||
24 | * @param string $requestedName |
||
25 | 1 | * @return bool |
|
26 | */ |
||
27 | 1 | public function canCreate(ContainerInterface $container, $requestedName) |
|
42 | |||
43 | /** |
||
44 | * @param ContainerInterface $container |
||
45 | 9 | * @return array |
|
46 | */ |
||
47 | 9 | protected function getConfig(ContainerInterface $container) |
|
56 | } |
||
57 |