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

Commit

Permalink
feat: Add backend api support for Local Authority UI
Browse files Browse the repository at this point in the history
  • Loading branch information
fibble committed Jun 24, 2024
1 parent c1a0524 commit 331e51d
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,8 @@ public function handleCommand(CommandInterface $command): Result
$repo = $this->getRepo();

Check failure on line 26 in module/Api/src/Domain/CommandHandler/LocalAuthority/Update.php

View workflow job for this annotation

GitHub Actions / static-analysis / Psalm - 8.2

UndefinedDocblockClass

module/Api/src/Domain/CommandHandler/LocalAuthority/Update.php:26:9: UndefinedDocblockClass: Docblock-defined class, interface or enum named Dvsa\Olcs\Transfer\Command\LocalAuthority\Update does not exist (see https://psalm.dev/200)
$localAuthority = $repo->fetchUsingId($command);
$localAuthority->update(
$command->getConfigName(),
$command->getFriendlyName(),
$this->refData($command->getStatus())
$command->getDescription(),

Check failure on line 29 in module/Api/src/Domain/CommandHandler/LocalAuthority/Update.php

View workflow job for this annotation

GitHub Actions / static-analysis / Psalm - 8.2

UndefinedDocblockClass

module/Api/src/Domain/CommandHandler/LocalAuthority/Update.php:29:13: UndefinedDocblockClass: Docblock-defined class, interface or enum named Dvsa\Olcs\Transfer\Command\LocalAuthority\Update does not exist (see https://psalm.dev/200)
$command->getNotificationEmail()

Check failure on line 30 in module/Api/src/Domain/CommandHandler/LocalAuthority/Update.php

View workflow job for this annotation

GitHub Actions / static-analysis / Psalm - 8.2

UndefinedDocblockClass

module/Api/src/Domain/CommandHandler/LocalAuthority/Update.php:30:13: UndefinedDocblockClass: Docblock-defined class, interface or enum named Dvsa\Olcs\Transfer\Command\LocalAuthority\Update does not exist (see https://psalm.dev/200)
);

$repo->save($localAuthority);
Expand Down

0 comments on commit 331e51d

Please sign in to comment.