Closed allain closed 7 years ago
FIX: $this->prop = now causes a public $prop variable to be declared. It wasn't catching them all when multiple ones were being done.
FIX: constructors calling the parent constructor using the super(...) syntax wasn't getting expanded to parent::__construct(...)
super(...)
parent::__construct(...)
Nice one! Thanks!
FIX: $this->prop = now causes a public $prop variable to be declared. It wasn't catching them all when multiple ones were being done.
FIX: constructors calling the parent constructor using the
super(...)
syntax wasn't getting expanded toparent::__construct(...)