1 | <?php |
||
39 | class LoggerFactory implements LoggerFactoryInterface |
||
40 | { |
||
41 | |||
42 | /** |
||
43 | * The DI container instance. |
||
44 | * |
||
45 | * @var \Symfony\Component\DependencyInjection\ContainerInterface |
||
46 | */ |
||
47 | protected $container; |
||
48 | |||
49 | /** |
||
50 | * The actual configuration instance. |
||
51 | * |
||
52 | * @var \TechDivision\Import\ConfigurationInterface |
||
53 | */ |
||
54 | protected $configuration; |
||
55 | |||
56 | /** |
||
57 | * Initialize the factory with the the DI container instance and the actual configuration instance. |
||
58 | * |
||
59 | * @param \Symfony\Component\DependencyInjection\ContainerInterface $container The DI container instance |
||
60 | * @param \TechDivision\Import\ConfigurationInterface $configuration The configuration with the data to create the loggers with |
||
61 | */ |
||
62 | public function __construct(ContainerInterface $container, ConfigurationInterface $configuration) |
||
67 | |||
68 | /** |
||
69 | * Returns the actual configuration instance. |
||
70 | * |
||
71 | * @return \TechDivision\Import\ConfigurationInterface The configuration instance |
||
72 | */ |
||
73 | protected function getConfiguration() |
||
77 | |||
78 | /** |
||
79 | * Returns the DI container instance. |
||
80 | * |
||
81 | * @return \Symfony\Component\DependencyInjection\ContainerInterface The DI container instance |
||
82 | */ |
||
83 | protected function getContainer() |
||
87 | |||
88 | /** |
||
89 | * Create's and return's the loggers to use. |
||
90 | * |
||
91 | * @return \Doctrine\Common\Collections\ArrayCollection The array with the initialized loggers |
||
92 | */ |
||
93 | public function createLoggers() |
||
125 | } |
||
126 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.