Ben bir intereface, örneğin uygulayan bir sınıfın, bir yöntem imzasını değiştirmeniz eğer bir PHP komut dosyası, bir hata iletisi olmadan durdurur:
interface A
{
public function somefunction();
}
class B implements A
{
public function somefunction(XY $xy);
{
...
}
}
Bu tabii ki bir hata olduğunu, ancak gösterilen hiçbir hata iletisi yok.
What is the name of this error type? (I already searched a lot, but with the wrong phrases obviously) How can I log or output this error?
Ben (veya Windows 1.7.3 için XAMPP ile) PHP 5.3.1 kullanıyorum
(Ben bu hatalara Eclipse konsolunda gösterildi 5.3 önceki PHP <, Zend Debugger kullanılan, ama şimdi XDebug kullanıyorum.)
Herhangi bir ipucu için şimdiden teşekkür ederiz!