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
381 B

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