子クラスから親クラスのコンストラクタを呼ぶ

コード
<?php
class parentCls
{
    public function __construct() {
        echo "in parent constructor.\n";
    }
}

class childCls extends parentCls
{
    public function __construct() {
        parent::__construct();
        echo "in child constructor.\n";
    }
}

$c = new childCls();
?>
実行結果
in parent constructor.
in child constructor.

子クラスにコンストラクタが指定されていない場合は親クラスのコンストラクタが自動的に呼ばれるみたい。