diff --git a/developer_manual/app_development/bootstrap.rst b/developer_manual/app_development/bootstrap.rst index 3e65a7c67..2cff7b506 100644 --- a/developer_manual/app_development/bootstrap.rst +++ b/developer_manual/app_development/bootstrap.rst @@ -76,7 +76,7 @@ The class **must** extend ``OCP\AppFramework\App`` and may optionally implement // ... boot logic goes here ... /** @var IManager $manager */ - $manager = $context->getAppContainer()->query(IManager::class) + $manager = $context->getAppContainer()->query(IManager::class); $manager->registerNotifierService(Notifier::class); }