public static function nullable()

in src/DocBlock/DocBlock.hack [298:306]


  public static function nullable(?string $comment): ?this {
    if ($comment === null) {
      return null;
    }
    if ($comment === '') {
      return null;
    }
    return new self($comment);
  }