Skip to content

Commit

Permalink
add namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
ylebre committed Feb 7, 2024
1 parent 306da55 commit 5813add
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion solid/lib/AppInfo/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
use OCP\IServerContainer;
use OCP\Settings\IManager;
use OCP\Util;
use OCP\IDBConnection;

class Application extends App implements IBootstrap {
public const APP_ID = 'solid';
Expand Down Expand Up @@ -69,7 +70,7 @@ public function register(IRegistrationContext $context): void {

$context->registerService(SolidWebhookMapper::class, function($c): SolidWebhookMapper {
return new SolidWebhookMapper(
$c->get(IDBConnection::class)
$c->get(\OCP\IDBConnection::class)
);
});
}
Expand Down

0 comments on commit 5813add

Please sign in to comment.