You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
386 B

--TEST--
ZE2 cannot override final __construct
--FILE--
<?php
class Base
{
public final function __construct()
{
}
}
class Works extends Base
{
}
class Extended extends Base
{
public function Extended()
{
}
}
ReflectionClass::export('Extended');
?>
--EXPECTF--
Fatal error: Cannot override final Base::__construct() with Extended::Extended() in %sfinal_ctor1.php on line %d