| Total Complexity | 4 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 22 | class CreateFamilyLogHandler implements CommandHandlerProtocol |
||
| 23 | { |
||
| 24 | private FamilyLogRepositoryProtocol $repository; |
||
| 25 | |||
| 26 | public function __construct(FamilyLogRepositoryProtocol $repository) |
||
| 27 | { |
||
| 28 | $this->repository = $repository; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function __invoke(CreateFamilyLog $command): void |
||
| 48 | } |
||
| 49 | } |
||
| 50 |