lombok-php icon indicating copy to clipboard operation
lombok-php copied to clipboard

Properties sete via c'tor promotion are not supported

Open MarcinOrlowski opened this issue 7 months ago • 0 comments

C'tor promotion seems not to be handled correctly, i.e.

#[Getter]
class Test {
    public function __construct(protected array $consumes = []) {}
   ...
}

does not seem to expose any getConsumes().

MarcinOrlowski avatar Nov 24 '23 04:11 MarcinOrlowski