Community
Participate
Working Groups
namespace Alliance; class DateTime extends \DateTime { public function __construct($aTime = 'now', \DateTimeZone $aTimeZone = NULL) { $time = $aTime; /* do some stuff */ if ($aTimeZone) { parent::__construct($time, $aTimeZone); //ctrl+click here } else { parent::__construct($time); //ctrl+click here } } } press ctrl+click on __construct of parent::__construct,it will go to __construct of \Alliance\DateTime,but it should go \DateTime::__construct
fixed
Verified fixed. Closing... Kalin Yanev kalin.a@zend.com