<?php
ini_set('display_errors', true);
error_reporting(E_ALL);

class Foo
{
    private static $name = 'foo';
    public static function getName()
    {
        return static::$name;
    }
}

class Bar extends Foo
{
    private static $name = 'bar';
}

echo Bar::getName();