private static function getParameterListItem()

in src/PageSections/FunctionishParameters.hack [48:59]


  private static function getParameterListItem(
    string $ns,
    ScannedParameter $p,
    ?DocBlock\ParameterInfo $docs,
  ): string {
    $text = $docs['text'] ?? null;
    return \sprintf(
      '- `%s`%s',
      _Private\stringify_parameter($ns, $p, $docs),
      $text === null ? '' : ' '.$text,
    );
  }