We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5f40fad + 109422f commit de23547Copy full SHA for de23547
apps/dav/lib/AppInfo/Application.php
@@ -228,10 +228,10 @@ public function boot(IBootContext $context): void {
228
// Load all dav apps
229
\OC_App::loadApps(['dav']);
230
231
- $context->injectFn([$this, 'registerHooks']);
232
- $context->injectFn([$this, 'registerContactsManager']);
233
- $context->injectFn([$this, 'registerCalendarManager']);
234
- $context->injectFn([$this, 'registerCalendarReminders']);
+ $context->injectFn($this->registerHooks(...));
+ $context->injectFn($this->registerContactsManager(...));
+ $context->injectFn($this->registerCalendarManager(...));
+ $context->injectFn($this->registerCalendarReminders(...));
235
}
236
237
public function registerHooks(
0 commit comments