Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit 98d59d6

Browse files
committed
Moves aliases before factories
Consistency with other modules.
1 parent 929cf63 commit 98d59d6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ConfigProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ public function __invoke()
2929
public function getDependencyConfig()
3030
{
3131
return [
32-
'factories' => [
33-
ValidatorPluginManager::class => ValidatorPluginManagerFactory::class,
34-
],
3532
'aliases' => [
3633
'ValidatorManager' => ValidatorPluginManager::class,
3734
],
35+
'factories' => [
36+
ValidatorPluginManager::class => ValidatorPluginManagerFactory::class,
37+
],
3838
];
3939
}
4040
}

0 commit comments

Comments
 (0)