I have this code in PHP:
abstract class Development
{
static function testUnit()
{
echo get_class();
}
}
class Component extends Development
{
}
But if I am calling Component::testUnit();
I am receiving Development instead of Component. It is puzzling me because such static function has no meaning I guess.