We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SelectFromMultiSelect works also if $value == AbstractFilterType::EMPTY_STRING
trim(): Argument #1 ($string) must be of type string, null given
An Exception is thrown if $value == AbstractFilterType::EMPTY_STRING in SelectFromMultiSelect
SelectFromMultiSelect.php, line 66 -> There is assigned null to $value,
then, in line 72, function trim($value) is called -> trim(null) is not allowed in PHP: doku
The text was updated successfully, but these errors were encountered:
Thank you!
Fixed by #145
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Expected behavior
SelectFromMultiSelect works also if $value == AbstractFilterType::EMPTY_STRING
Actual behavior
trim(): Argument #1 ($string) must be of type string, null given
An Exception is thrown if $value == AbstractFilterType::EMPTY_STRING in SelectFromMultiSelect
SelectFromMultiSelect.php, line 66 -> There is assigned null to $value,
then, in line 72, function trim($value) is called -> trim(null) is not allowed in PHP: doku
Steps to reproduce
The text was updated successfully, but these errors were encountered: