Skip to content

Commit

Permalink
Fix constraint error when creating a new proposal #615
Browse files Browse the repository at this point in the history
  • Loading branch information
paul121 committed Feb 20, 2024
1 parent c8c6673 commit ff99e27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Fix managed permissions to edit taxonomy terms. [#622](https://github.com/Rothamsted-Ecoinformatics/farm_rothamsted/issues/622)
- Fix statistical design issue when uploading files to design entity. [#616](https://github.com/Rothamsted-Ecoinformatics/farm_rothamsted/issues/616)
- Fix constraint error when creating a new proposal. [#615](https://github.com/Rothamsted-Ecoinformatics/farm_rothamsted/issues/615)

## [2.18.0](https://github.com/Rothamsted-Ecoinformatics/farm_rothamsted/milestone/39) 2023-12-11

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function __get($option): mixed {
/**
* {@inheritDoc}
*/
public function __isset($option) {
public function __isset($option): bool {
if ('requiredStatuses' === $option) {
return TRUE;
}
Expand Down

0 comments on commit ff99e27

Please sign in to comment.