Roave / BetterReflection

:crystal_ball: Better Reflection is a reflection API that aims to improve and provide more features than PHP's built-in reflection API.
MIT License
1.18k stars 131 forks source link

Failing test: `ReflectionClass::getTraitAliases` does not maintain case #1444

Closed janedbal closed 4 days ago

janedbal commented 2 weeks ago

I'm not sure if this is intentional, but it is harder to work with and does not comply with the phpdoc of the getTraitAliases method.

Ocramius commented 1 week ago

If I see this correctly, we need to look for strtolower() usages in this codebase

kukulich commented 1 week ago

It's caused by this commit: https://github.com/Roave/BetterReflection/commit/0ba851cb

I will look at it.

janedbal commented 4 days ago

Thank you!