Merge pull request #6096 from andristeiner/patch-2

fix PHP syntax in boostrap example
This commit is contained in:
tflidd
2021-02-16 23:34:24 +01:00
committed by GitHub

View File

@@ -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);
}