@@ -36,17 +36,17 @@ |
||
36 | 36 | public function getFactories(): array |
37 | 37 | { |
38 | 38 | return [ |
39 | - Object\Container\Container::class => [ static::class, 'getObjectContainer' ], |
|
40 | - Object\ObjectManager::class => [ static::class, 'getObjectManager' ], |
|
39 | + Object\Container\Container::class => [static::class, 'getObjectContainer'], |
|
40 | + Object\ObjectManager::class => [static::class, 'getObjectManager'], |
|
41 | 41 | // @deprecated since v11, will be removed in v12 |
42 | - SignalSlot\Dispatcher::class => [ static::class, 'getSignalSlotDispatcher' ], |
|
43 | - Configuration\BackendConfigurationManager::class => [ static::class, 'getBackendConfigurationManager' ], |
|
44 | - Configuration\ConfigurationManager::class => [ static::class, 'getConfigurationManager' ], |
|
45 | - Reflection\ReflectionService::class => [ static::class, 'getReflectionService' ], |
|
42 | + SignalSlot\Dispatcher::class => [static::class, 'getSignalSlotDispatcher'], |
|
43 | + Configuration\BackendConfigurationManager::class => [static::class, 'getBackendConfigurationManager'], |
|
44 | + Configuration\ConfigurationManager::class => [static::class, 'getConfigurationManager'], |
|
45 | + Reflection\ReflectionService::class => [static::class, 'getReflectionService'], |
|
46 | 46 | // @deprecated since v11, will be removed in v12 |
47 | - Service\EnvironmentService::class => [ static::class, 'getEnvironmentService' ], |
|
48 | - Service\ExtensionService::class => [ static::class, 'getExtensionService' ], |
|
49 | - Security\Cryptography\HashService::class => [ static::class, 'getHashService' ], |
|
47 | + Service\EnvironmentService::class => [static::class, 'getEnvironmentService'], |
|
48 | + Service\ExtensionService::class => [static::class, 'getExtensionService'], |
|
49 | + Security\Cryptography\HashService::class => [static::class, 'getHashService'], |
|
50 | 50 | ]; |
51 | 51 | } |
52 | 52 |