1
0
Fork 0
mirror of synced 2024-09-28 15:31:43 +12:00

refactor: global to registry

This commit is contained in:
Binyamin Yawitz 2024-09-05 14:03:59 -04:00
parent 0ecc61fe9e
commit 8e145a9519
No known key found for this signature in database

View file

@ -504,7 +504,7 @@ $console = new Dependency();
$project = new Dependency();
$clients = new Dependency();
$servers = new Dependency();
$registry = new Dependency();
$register = new Dependency();
$connections = new Dependency();
$localeCodes = new Dependency();
$getProjectDB = new Dependency();
@ -883,7 +883,7 @@ $authentication
return new Authentication();
});
$registry
$register
->setName('registry')
->setCallback(function () use (&$registry): Registry {
return $registry;
@ -1350,7 +1350,7 @@ $container->set($console);
$container->set($project);
$container->set($clients);
$container->set($servers);
$container->set($registry);
$container->set($register);
$container->set($connections);
$container->set($localeCodes);
$container->set($dbForProject);