class Employee 
{
    public static $favSport = "Football";
    public static function watchTV()
    {
        echo "Watching ".static::$favSport;
    }
}
class Executive extends Employee 
{
    public static $favSport = "Polo";
}
echo Executive::watchTV();
Ayrıştırma hatası: satır 7 sözdizimi hatası, beklenmedik T_STATIC
Neden ayrıştırma hatası alıyorum & yok ve nasıl düzeltebilirim? Teşekkürler!
