Fix: Use correct ILogger interface instead of OCP\Util\Logger type
This commit is contained in:
@@ -5,7 +5,7 @@ declare(strict_types=1);
|
||||
namespace OCA\AnalyticsHub\Service;
|
||||
|
||||
use OCA\AnalyticsHub\Model\ClientConfig;
|
||||
use OCP\Util\Logger;
|
||||
use OCP\ILogger;
|
||||
|
||||
/**
|
||||
* Data Processor Service
|
||||
@@ -13,7 +13,7 @@ use OCP\Util\Logger;
|
||||
*/
|
||||
class DataProcessor {
|
||||
|
||||
private ?Logger $logger;
|
||||
private ?ILogger $logger;
|
||||
|
||||
// Default thresholds
|
||||
private const DEFAULT_SIGNIFICANT_CHANGE_PCT = 20;
|
||||
|
||||
Reference in New Issue
Block a user