-
-
Notifications
You must be signed in to change notification settings - Fork 454
New issue
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
Enable to set custom TypedFieldMapper; #1802
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
It seems that while modernizing the directory structure, I overlooked some of the paths present in that configuration file.
Update metadata for 2.13 branch
fix deprecations for deprecated mysql server versions
This silences a warning at test suite setup.
This commit adds necessary delimiters to regular expressions used in schema_filter configurations, preventing the 'No ending delimiter' error in preg_match. It improves the error handling by ensuring that regular expressions are always correctly formatted.
Bumps [doctrine/.github](https://github.com/doctrine/.github) from 3.1.0 to 5.0.1. - [Release notes](https://github.com/doctrine/.github/releases) - [Commits](doctrine/.github@3.1.0...5.0.1) --- updated-dependencies: - dependency-name: doctrine/.github dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [ramsey/composer-install](https://github.com/ramsey/composer-install) from 2 to 3. - [Release notes](https://github.com/ramsey/composer-install/releases) - [Commits](ramsey/composer-install@v2...v3) --- updated-dependencies: - dependency-name: ramsey/composer-install dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
You need to adjust xsd schema too |
Thank you. I see I missed few things, including DI test. That's my first try here so apologies if I did something wrong. |
@ostrolucky I'm not sure if there is something more I should update? Thank you in advance. |
ostrolucky
approved these changes
May 21, 2024
This was referenced Oct 16, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR add
typed_field_mapper
option allowing to override or set custom TypedFieldMapper as described in ORM documentation. This option allows auto detection of doctrine types based on PHP typed properties.https://www.doctrine-project.org/projects/doctrine-orm/en/3.1/reference/typedfieldmapper.html
\Doctrine\ORM\Configuration::getTypedFieldMapper()
returnnull
as default and\Doctrine\ORM\Mapping\ClassMetadataInfo
instance is created by providingnull
orTypedFieldMapper
. Ifnull
\Doctrine\ORM\Mapping\DefaultTypedFieldMapper
is created. This why i set it as default undertyped_field_mapper
option.