Foo::bar();

abstract class Baz
{
public static function bar()
{
// ここで Foo の値を取りたいんですがどうやれば良いんでしょうか
}
}

class Foo extends Baz
{}