Skip to content

Commit

Permalink
Fix missing union return type (#276)
Browse files Browse the repository at this point in the history
This will:
- title
  • Loading branch information
jskowronski39 authored Aug 16, 2023
2 parents 1545b13 + 52a47f3 commit 552c59c
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 552c59c

Please sign in to comment.