Skip to content

Commit 4fbd919

Browse files
authored
Merge pull request #7 from fulll/remove_dyn_prop
chore: remove dynamic property
2 parents af8cd18 + 23f7a53 commit 4fbd919

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/Domain/Command/FailedCommand.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
class FailedCommand implements CommandInterface
88
{
99
protected $tryCount;
10+
/**
11+
* @var CommandInterface
12+
*/
13+
private $command;
1014

1115
public function __construct(CommandInterface $command, $tryCount = 1)
1216
{

src/Domain/LoggerBus.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,15 @@ class LoggerBus implements CommandBusInterface
1212

1313
private $delegateCommandBus;
1414

15-
private $commandSerializer;
16-
1715
private $handleLogLevel;
1816

1917
private $errorLogLevel;
2018

19+
/**
20+
* @var NormalizerInterface
21+
*/
22+
private $normalizer;
23+
2124
public function __construct(
2225
LoggerInterface $logger,
2326
CommandBusInterface $delegateCommandBus,

0 commit comments

Comments
 (0)