Skip to content

Commit 8d8aba4

Browse files
committed
Fix saving entity
1 parent da455b3 commit 8d8aba4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Command/AsyncEvent/SaveCommand.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,16 @@ class SaveCommand
1717
{
1818
private LoggerInterface $logger;
1919
private AsyncEventResource $resource;
20+
private EncryptorInterface $encryptor;
2021

2122
public function __construct(
2223
LoggerInterface $logger,
2324
AsyncEventResource $resource,
24-
private readonly EncryptorInterface $encryptor
25+
EncryptorInterface $encryptor
2526
) {
2627
$this->logger = $logger;
2728
$this->resource = $resource;
29+
$this->encryptor = $encryptor;
2830
}
2931

3032
/**

0 commit comments

Comments
 (0)