Fixes Test Failures relating to InputFilter Regression and Doctrine Annotations Changes #180
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Doctrine Annotations now converts deprecations to exceptions (ref: doctrine/annotations#438) but it's difficult to tell when the internal call to
trigger_error
for the deprecation fires vs the exception thrown from annotations, event thoughconvertDeprecationsToExceptions
is active here.This pull also updates
inputfilter
to the latest release WRT laminas/laminas-inputfilter#60A failing test was occurring, due to other changes in InputFilter where factories are now fetching the
InputFilterManager
et al by FQCN rather than alias. This broke theFormAbstractServiceFactoryTest
because of the contrived ServiceManager config. This shouldn't be an issue for consumers because they would be pulling services from a fully configured ServiceManger (The aliases and services haven't changed)This should help other pulls to go green on latest deps