I
Size: a a a
I
/
S
S
/
S
S
S
/
ДК
S
S
/
S
S
/
/
S
abstract class Foo {
public static function getConst() :string
{
throw new Exception('static function getConst must override!');
}
}
class Bar extends Foo {
}
Bar::getConst(); // !!/
/