make auditlogger optional in persistent data manager
All checks were successful
soko-web/pipeline/pr-master This commit looks good
All checks were successful
soko-web/pipeline/pr-master This commit looks good
This commit is contained in:
parent
5e0579463c
commit
7650b33cd2
@ -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