|
From: Bart V. <bar...@zo...> - 2006-07-19 06:25:07
|
Konstantin V. Arkhipov wrote:
> hi,
>=20
> file attached is a test case for reproducing this error message:
>=20
> Fatal error: Cannot override final NoOneCanMakeMe::__construct() with =
> TestClass::__construct() in Unknown on line 0
>=20
> this happens on restoring class from cache, i.e. to reproduce it you'l=
l have=20
> to run it under mod_php/php-fcgid at least twice.
>=20
> php-5.1.4, eA-0.9.5-beta2
Hi,
Sorry for the late reply, I was on vacation. I've tried the test case
and I can't reproduce it with the latest development version. I tried
this code:
abstract class NoOneCanMakeMe
{
final public function __construct() { }
}
class TestClass extends NoOneCanMakeMe { }
$o =3D new TestClass();
Can you still reproduce it with the latest dev version from here?
http://snapshots.eaccelerator.net/
thanks,
Bart
--=20
Bart Vanbrabant <bar...@zo...>
PGP fingerprint: 093C BB84 17F6 3AA6 6D5E FC4F 84E1 FED1 E426 64D1
|