| 1 | <?php namespace C4tech\RayEmitter\Example\BankAccount; |
||
| 6 | final class AggregateRoot extends Entity implements AggregateRootInterface |
||
| 7 | { |
||
| 8 | use RootTrait; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * Account balance |
||
| 12 | * @var UsDollar |
||
| 13 | */ |
||
| 14 | private $balance; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Owner name |
||
| 18 | * @var OwnerName |
||
| 19 | */ |
||
| 20 | private $owner; |
||
| 21 | |||
| 22 | protected function setBalance(UsDollar $value) |
||
| 26 | |||
| 27 | protected function setOwner(OwnerName $value) |
||
| 31 | } |
||
| 32 |