enumval = $enumval; } public function getValueShort() { if ($this->enumval instanceof BackedEnum) { if (\is_string($this->enumval->value)) { return '"'.$this->enumval->value.'"'; } if (\is_int($this->enumval->value)) { return (string) $this->enumval->value; } } } public function getType() { return $this->classname.'::'.$this->enumval->name; } public function getSize() { } }