v2.7.2
版本发布时间: 2017-01-13 22:10:06
doctrine/common最新发布版本:3.4.4(2024-04-16 21:42:00)
This release fixes an issue in the proxy code generation that prevented an optimization in proxy identifier getter methods.
Specifically, if you have a method like following in your proxied class, then this release will ensure that a call to that method will not initialize your proxy if not needed:
class MyEntity
{
private $id;
public function getId() : ?int
{
return $this->id;
}
}
Total issues resolved: 3