You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Documentation update + PHP 8.1 changes
- Add documentation for string testers
- Avoid strlen null deprecation message because a variable
was not propery type checked
- Upgrade quality tools
Initialize model via reflection instead of new
Mandatory arguments lead to type errors so far because
the string filter extension tried to create a new class
via new instead of via reflection. Now with reflection
we ignore uninitialized properties of the class in our
string filter processor to be less error-prone.