0 votes
in PHP by

Are Parent constructors called implicitly inside a class constructor?

1 Answer

0 votes
by
No, a parent constructor have to be called explicitly as follows:

parent::constructor($value)

Related questions

0 votes
asked Jun 23, 2019 in PHP by SakshiSharma
0 votes
asked Jun 23, 2019 in PHP by SakshiSharma
...