Skip to content

Commit

Permalink
Update AccountAggregateRoot.php
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Jun 17, 2020
1 parent 47e2d8c commit ccfafad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/TestClasses/AggregateRoots/AccountAggregateRoot.php
Expand Up @@ -14,11 +14,11 @@ class AccountAggregateRoot extends AggregateRoot

public int $aggregateVersionAfterReconstitution = 0;

public $dep;
public $dependency;

public function __construct($dep = null)
public function __construct($dependency = null)
{
$this->dep = $dep;
$this->dependency = $dependency;
}

public function addMoney(int $amount): self
Expand Down

0 comments on commit ccfafad

Please sign in to comment.