|
@@ -33,14 +33,14 @@ |
|
|
block discarded – undo |
|
33
|
33
|
public function getFactories(): array |
|
34
|
34
|
{ |
|
35
|
35
|
return [ |
|
36
|
|
- Object\Container\Container::class => [ static::class, 'getObjectContainer' ], |
|
37
|
|
- Object\ObjectManager::class => [ static::class, 'getObjectManager' ], |
|
38
|
|
- SignalSlot\Dispatcher::class => [ static::class, 'getSignalSlotDispatcher' ], |
|
39
|
|
- Configuration\ConfigurationManager::class => [ static::class, 'getConfigurationManager' ], |
|
40
|
|
- Reflection\ReflectionService::class => [ static::class, 'getReflectionService' ], |
|
41
|
|
- Service\EnvironmentService::class => [ static::class, 'getEnvironmentService' ], |
|
42
|
|
- Service\ExtensionService::class => [ static::class, 'getExtensionService' ], |
|
43
|
|
- Security\Cryptography\HashService::class => [ static::class, 'getHashService' ], |
|
|
36
|
+ Object\Container\Container::class => [static::class, 'getObjectContainer'], |
|
|
37
|
+ Object\ObjectManager::class => [static::class, 'getObjectManager'], |
|
|
38
|
+ SignalSlot\Dispatcher::class => [static::class, 'getSignalSlotDispatcher'], |
|
|
39
|
+ Configuration\ConfigurationManager::class => [static::class, 'getConfigurationManager'], |
|
|
40
|
+ Reflection\ReflectionService::class => [static::class, 'getReflectionService'], |
|
|
41
|
+ Service\EnvironmentService::class => [static::class, 'getEnvironmentService'], |
|
|
42
|
+ Service\ExtensionService::class => [static::class, 'getExtensionService'], |
|
|
43
|
+ Security\Cryptography\HashService::class => [static::class, 'getHashService'], |
|
44
|
44
|
]; |
|
45
|
45
|
} |
|
46
|
46
|
|