We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 306da55 commit 5813addCopy full SHA for 5813add
1 file changed
solid/lib/AppInfo/Application.php
@@ -25,6 +25,7 @@
25
use OCP\IServerContainer;
26
use OCP\Settings\IManager;
27
use OCP\Util;
28
+use OCP\IDBConnection;
29
30
class Application extends App implements IBootstrap {
31
public const APP_ID = 'solid';
@@ -69,7 +70,7 @@ public function register(IRegistrationContext $context): void {
69
70
71
$context->registerService(SolidWebhookMapper::class, function($c): SolidWebhookMapper {
72
return new SolidWebhookMapper(
- $c->get(IDBConnection::class)
73
+ $c->get(\OCP\IDBConnection::class)
74
);
75
});
76
}
0 commit comments