juliusstoerrle

Results 18 comments of juliusstoerrle

Do you have any exceptions in your log files?

Somehow recreating the specific file from scratch fixes the problem, even though it does not even show up in git as changed file.

it seems there actually was a difference: some files hat a different line ending (LF vs CRLF) not sure how that happend, probably code generation of my IDE used a...

You mean it's not needed because of following note from the guide? > Don't create a recipe for Symfony bundles if the only configuration in the manifest is the registration...

What config is needed? I'm using the bundle without configuration in the config.yml.

I encountered the issue today with a readonly classs around an int / IDENTITY id column: ````php #[ORM\Entity] readonly class Sample { #[ORM\Id, ORM\GeneratedValue(strategy: 'IDENTITY')] #[ORM\Column()] private int $id; //......

What is the reason fot not converting normal fields in `DocumentPersister::prepareQueryElement` called in `DocumentPersister::prepareQueryOrNewObj()` if there is an entry in the `ClassMetadata`? If my criteria contains the name of a...

Thanks for your long reply! Thats ok, I'm totally on your side in terms of consistency across doctrine. I will find a temporary solution to get my project forward. Could...