Marco Pivetta
Marco Pivetta
While PlantUML certainly works for diagramming, MermaidJS is a much simpler system that I've been relying upon a lot. I'm wondering if we could add support for it within this...
After various hours of tinkering with the Github actions runner role provided by this repository, I figured out that it can't work for me. I'm therefore opening this issue for:...
We'll need to add a new check for that
Example: ```diff class MySerializablePayload { - private string $foo; + private int $foo; } ``` or: ```diff class MySerializablePayload { private ValueType $foo; } class ValueType { - private string...
Similar to https://github.com/doctrine/orm/issues/7527 Calling `NativeQuery#setParameter('foo', new \stdClass(), MyType::NAME)` will lead to the ORM attempting to load class metadata for `stdClass`. https://github.com/doctrine/orm/blob/c8f2f61ea14e05c8f9a0da23467f3ca6a07d0173/lib/Doctrine/ORM/NativeQuery.php#L72 This is avoidable by short-circuiting this logic, and calling...
Starting with #6719, proxies can be partially loaded by just deciding which fields are to be lazy-loaded and which are not: this allows us to initialize them with empty `PersistentCollection`...