Skip to content

Commit 525b034

Browse files
authored
Merge pull request #5453 from nextcloud/fix/no-include-error-suppress
Do not suppress include_once errors for the composer autoloader
2 parents 3d8f71d + d1fd9c0 commit 525b034

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

developer_manual/app_development/bootstrap.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ The class **must** extend ``OCP\AppFramework\App`` and may optionally implement
6464
// ... registration logic goes here ...
6565
6666
// Register the composer autoloader for packages shipped by this app, if applicable
67-
@include_once __DIR__ . '/../../vendor/autoload.php'
67+
include_once __DIR__ . '/../../vendor/autoload.php'
6868
6969
$context->registerEventListener(
7070
BeforeUserDeletedEvent::class,

0 commit comments

Comments
 (0)