Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

fix: SetDefaultTrafficAreaAndEnforcementArea map to factory #204

Merged
merged 2 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion module/Api/config/command-map.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@
Command\Application\UndoCancelAllInterimFees::class => CommandHandler\Application\UndoCancelAllInterimFees::class,
Command\Application\CancelOutstandingFees::class => CommandHandler\Application\CancelOutstandingFees::class,
Command\Application\SetDefaultTrafficAreaAndEnforcementArea::class
=> CommandHandler\Application\SetDefaultTrafficAreaAndEnforcementArea::class,
=> CommandHandler\Application\SetDefaultTrafficAreaAndEnforcementAreaFactory::class,
Command\Application\DeleteApplication::class => CommandHandler\Application\DeleteApplication::class,

// Domain - Application Operating Centre
Expand Down
1 change: 1 addition & 0 deletions module/Api/config/validation-map/side-effects.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
CommandHandler\Application\UndoCancelAllInterimFees::class => IsSideEffect::class,
CommandHandler\Application\CancelOutstandingFees::class => IsSideEffect::class,
CommandHandler\Application\SetDefaultTrafficAreaAndEnforcementArea::class => IsSideEffect::class,
CommandHandler\Application\SetDefaultTrafficAreaAndEnforcementAreaFactory::class => IsSideEffect::class,
CommandHandler\Application\DeleteApplication::class => IsSideEffect::class,
CommandHandler\ApplicationOperatingCentre\CreateApplicationOperatingCentre::class => IsSideEffect::class,
CommandHandler\ApplicationOperatingCentre\DeleteApplicationOperatingCentre::class => IsSideEffect::class,
Expand Down
Loading