Closed
Description
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 #22265
and here api-platform/core#1037
ObjectNormalizer returns $id instead of $Id. It is bad naming convention, but is possible
class Entity {
protected $Id;
public function getId()
{
return $this->Id;
}
}
Is it valid, should I try to fix it?