tag. * * @param string|null $content Raw wikitext content of the tag. * @param string[] $attributes * @param Parser $parser * @param PPFrame $frame * * @return string */ public static function ref( $content, array $attributes, Parser $parser, PPFrame $frame ) { /** @var Cite $cite */ $cite = $parser->extCite; // @phan-suppress-next-line SecurityCheck-XSS False positive return $cite->ref( $content, $attributes, $parser, $frame ); } /** * Parser hook for the tag. * * @param string|null $content Raw wikitext content of the tag. * @param string[] $attributes * @param Parser $parser * @param PPFrame $frame * * @return string */ public static function references( $content, array $attributes, Parser $parser, PPFrame $frame ) { /** @var Cite $cite */ $cite = $parser->extCite; // @phan-suppress-next-line SecurityCheck-XSS False positive return $cite->references( $content, $attributes, $parser, $frame ); } }