Current File : /home/omtekel/wiki/extensions/Math/src/TexVC/Nodes/Fun2sq.php
<?php

declare( strict_types = 1 );

namespace MediaWiki\Extension\Math\TexVC\Nodes;

class Fun2sq extends Fun2 {

	public function inCurlies() {
		return $this->render();
	}

	public function render() {
		return '{' . $this->fname . '[' . $this->arg1->render() . ']' . $this->arg2->inCurlies() . '}';
	}
}