Skip to content

Commit

Permalink
Merge pull request #163 from nextcloud/backport/162/stable24
Browse files Browse the repository at this point in the history
[stable24] switching to LoggerInterface
  • Loading branch information
ArtificialOwl authored May 5, 2022
2 parents 4128f0b + bb58c46 commit bb122d3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/Db/CoreRequestBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@
use OC;
use OC\SystemConfig;
use OCA\Files_FullTextSearch\Service\MiscService;
use OCA\Social\Db\SocialQueryBuilder;
use OCP\IDBConnection;
use OCP\ILogger;
use Psr\Log\LoggerInterface;


/**
Expand Down Expand Up @@ -73,7 +72,7 @@ public function getQueryBuilder(): CoreQueryBuilder {
return new CoreQueryBuilder(
OC::$server->get(IDBConnection::class),
OC::$server->get(SystemConfig::class),
OC::$server->get(ILogger::class)
OC::$server->get(LoggerInterface::class)
);
}

Expand Down

0 comments on commit bb122d3

Please sign in to comment.