doctrine / reflection

The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection API that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.

Home Page:https://www.doctrine-project.org/projects/reflection.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

setValue on typed property must unset to uninitialized

beberlei opened this issue · comments

This fixes doctrine/orm#7999 when during a delete operation the identifier is set to null. This is not possible on typed properties that are not nullable.

You can workaround it by unitiializing the property instead, which comes close to NULL.