function print_type()

in src/utils.hack [20:25]


function print_type(mixed $value): string {
  if (\is_object($value)) {
    return \get_class($value);
  }
  return \gettype($value);
}