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