Merge pull request #5500 from nextcloud/backport/5453/stable20

[stable20] Do not suppress include_once errors for the composer autoloader
This commit is contained in:
Morris Jobke 2020-12-01 23:03:37 +01:00 committed by GitHub
commit 2bc7e44fc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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,