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
parent c45478ed05
commit d1fd9c0156

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,