| Q | A | ---------------- | ----- | Bug report? | yes | Feature request? | no | BC Break report? | yes | RFC? | no | Symfony version | 2.8.19 Same problem that has been fixed here https://github.com/symfony/symfony/pull/22265 and here https://github.com/api-platform/core/pull/1037 ObjectNormalizer returns $id instead of $Id. It is bad naming convention, but is possible ```php class Entity { protected $Id; public function getId() { return $this->Id; } } ``` https://github.com/symfony/symfony/blob/v2.8.19/src/Symfony/Component/Serializer/Normalizer/ObjectNormalizer.php#L211 Is it valid, should I try to fix it?