Do not suppress include_once errors for the composer autoloader

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2020-11-24 10:41:58 +01:00 committed by backportbot[bot]
parent 93379bc7df
commit a8921eb265

View File

@ -64,7 +64,7 @@ The class **must** extend ``OCP\AppFramework\App`` and may optionally implement
// ... registration logic goes here ...
// Register the composer autoloader for packages shipped by this app, if applicable
@include_once __DIR__ . '/../../vendor/autoload.php'
include_once __DIR__ . '/../../vendor/autoload.php'
$context->registerEventListener(
BeforeUserDeletedEvent::class,