Merge pull request #5244 from nextcloud/backport/5231/stable20

[stable20] Fix typo in documentation
This commit is contained in:
Morris Jobke 2020-10-12 16:57:07 +02:00 committed by GitHub
commit 59179f2f3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,7 +91,7 @@ becomes
$container->registerService('DecryptAll', function (ContainerInterface $c) {
return new DecryptAll(
$c->get('Util'),
$c->get(KeyManage::class'),
$c->get(KeyManager::class'),
$c->get('Crypt'),
$c->get(ISession::class)
)