We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da455b3 commit 8d8aba4Copy full SHA for 8d8aba4
Command/AsyncEvent/SaveCommand.php
@@ -17,14 +17,16 @@ class SaveCommand
17
{
18
private LoggerInterface $logger;
19
private AsyncEventResource $resource;
20
+ private EncryptorInterface $encryptor;
21
22
public function __construct(
23
LoggerInterface $logger,
24
AsyncEventResource $resource,
- private readonly EncryptorInterface $encryptor
25
+ EncryptorInterface $encryptor
26
) {
27
$this->logger = $logger;
28
$this->resource = $resource;
29
+ $this->encryptor = $encryptor;
30
}
31
32
/**
0 commit comments