I found an undocumented change in #php 8.1+ for `ReflectionClass::getDefaultProperties`. There is a note which says: 'This method only works for static properties when used on internal classes. The default value of a static class property can not be tracked when using this method on user defined classes.'
But since php8.1 it seems to track them nonetheless.
Can I rely on this as this is missing in the docs or shouldn't I? (Want to use it for tests)
Example: https://3v4l.org/mM3IT#v8.0.30