make auditlogger optional in persistent data manager #12
@ -13,9 +13,9 @@ class PersistentDataManager implements IPersistentDataManager
|
||||
{
|
||||
private IConnection $dbConnection;
|
||||
|
||||
private IAuditLogger $auditLogger;
|
||||
private ?IAuditLogger $auditLogger;
|
||||
|
||||
public function __construct(IConnection $dbConnection, IAuditLogger $auditLogger)
|
||||
public function __construct(IConnection $dbConnection, ?IAuditLogger $auditLogger = null)
|
||||
{
|
||||
$this->dbConnection = $dbConnection;
|
||||
$this->auditLogger = $auditLogger;
|
||||
|
Loading…
Reference in New Issue
Block a user