I need to have a class constructor in PHP call its parent\'s parent\'s (grandparent?) constructor without calling the parent constructor.
//
from php 7 u can use
parent::parent::__construct();