<?php

namespace MediaWiki\SyntaxHighlight;

use MediaWiki\Status\Status;

/**
 * Phan stub for the soft dependency to SyntaxHighlight_GeSHi extension
 * There is no hard dependency and EventLogging is a dependency to many other extensions,
 * so this class is stubbed and not verified against the original class
 */
class SyntaxHighlight {

	/**
	 * @param string $code
	 * @param string|null $lang
	 * @param array $args
	 * @return Status
	 */
	public static function highlight( $code, $lang = null, $args = [] ) {
	}

}
