Skip to content

Commit

Permalink
Fix missing union return type
Browse files Browse the repository at this point in the history
  • Loading branch information
jskowronski39 committed Aug 15, 2023
1 parent 1545b13 commit 52a47f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Service/Mission/MissionStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function invalidate(Request $request): void
$this->store->invalidate($request);
}

public function lock(Request $request): bool
public function lock(Request $request): bool|string
{
return $this->store->lock($request);
}
Expand Down

0 comments on commit 52a47f3

Please sign in to comment.