Skip to content

v2.7.2

Compare
Choose a tag to compare
@Ocramius Ocramius released this 13 Jan 14:10
· 393 commits to 3.4.x since this release

Build Status

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