-
-
Notifications
You must be signed in to change notification settings - Fork 404
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
[make:*] improve support for ORM 3.x / DBAL 4.x #1439
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
969b097
[ci] don't use database:create for sqlite in tests
jrushlow e7ccbb1
WIP - stop using arrays in CSM... handle FieldMapping::class
jrushlow 4fdf4e7
which tests blow up
jrushlow 1cdb1f7
use prop model in make:entity
jrushlow c4cbff8
dont create the schema in make:migration tests
jrushlow 90a3123
fix make form tests
jrushlow 2192cc5
dont add type attribute if type is inferred
jrushlow 363001e
WIP - allow doctrine association mapping classes in regen
jrushlow fe7f01d
missing unique attribute
jrushlow 96b0290
fix missing id attribute
jrushlow 948d0db
DisconnectedClassMetadataFactory is removed, set the reflection servi…
jrushlow bdeb0fa
tmp - disable mercure tests
jrushlow e327967
cleanup comments
jrushlow 2e9563a
use creator method
jrushlow e6db929
what is still using an array
jrushlow 030e689
dump depends
jrushlow c864411
use FieldMapping properties
jrushlow 46f5f78
handle relation mapping objects
jrushlow 76b52eb
naming conventions
jrushlow 8e85cb6
cleanup relation mapping
jrushlow f17167f
handle inversed property attributes
jrushlow 78d3821
handle array access deprecations
jrushlow 3a0faa4
last bits of cleanup
jrushlow a3f64c1
allow for step debugging
jrushlow File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,8 @@ | |
<env name="SYMFONY_PHPUNIT_VERSION" value="9.6" /> | ||
<env name="MAKER_SKIP_MERCURE_TEST" value="false"/> | ||
<env name="MAKER_SKIP_PANTHER_TEST" value="false" /> | ||
<!-- Overrides process timeout when step debugging --> | ||
<!-- <env name="MAKER_PROCESS_TIMEOUT" value="null" /> --> | ||
Comment on lines
+22
to
+23
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Allows for debugging |
||
</php> | ||
|
||
<testsuites> | ||
|
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ux-turbo
usesDoctrine\Commom\Util\ClassUtils::class
which no longer exists. As such, 2MakeEntity
tests fail that use Mercure. Keep this here && create an maker bundle issue to fix? Or live with (for now) the red x's on all of our tests?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keep this for now. Then we'll fix it in ux-turbo at some point.