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.
2 parents af8cd18 + 23f7a53 commit 4fbd919Copy full SHA for 4fbd919
src/Domain/Command/FailedCommand.php
@@ -7,6 +7,10 @@
7
class FailedCommand implements CommandInterface
8
{
9
protected $tryCount;
10
+ /**
11
+ * @var CommandInterface
12
+ */
13
+ private $command;
14
15
public function __construct(CommandInterface $command, $tryCount = 1)
16
src/Domain/LoggerBus.php
@@ -12,12 +12,15 @@ class LoggerBus implements CommandBusInterface
private $delegateCommandBus;
- private $commandSerializer;
-
17
private $handleLogLevel;
18
19
private $errorLogLevel;
20
+ * @var NormalizerInterface
21
22
+ private $normalizer;
23
+
24
public function __construct(
25
LoggerInterface $logger,
26
CommandBusInterface $delegateCommandBus,
0 commit comments