diff --git a/language/oop5/decon.xml b/language/oop5/decon.xml index f2bee9b3bb..61b732edaf 100644 --- a/language/oop5/decon.xml +++ b/language/oop5/decon.xml @@ -1,5 +1,5 @@ - + Constructors and Destructors @@ -18,9 +18,10 @@ - Parent constructors are not called implicitly. In order to run - a parent constructor, a call to - parent::__construct is required. + Parent constructors are not called implicitly if the child class defines + a constructor. In order to run a parent constructor, a call to + parent::__construct within the child constructor is + required.