Код: Выделить всё
trait Accessor
{
public static function int():int
{
}
}
Код: Выделить всё
enum Titular: int
{
use Accessor;
case minimus=1;
case maximus=2;
}
Код: Выделить всё
Titular::minimus::int(); //1
Подробнее здесь: https://stackoverflow.com/questions/790 ... statically
Мобильная версия