Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
66.67% |
2 / 3 |
|
66.67% |
2 / 3 |
CRAP | |
0.00% |
0 / 1 |
Fun1nb | |
66.67% |
2 / 3 |
|
66.67% |
2 / 3 |
3.33 | |
0.00% |
0 / 1 |
inCurlies | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
render | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
renderMML | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | declare( strict_types = 1 ); |
4 | |
5 | namespace MediaWiki\Extension\Math\WikiTexVC\Nodes; |
6 | |
7 | class Fun1nb extends Fun1 { |
8 | |
9 | public function inCurlies() { |
10 | return '{' . $this->render() . '}'; |
11 | } |
12 | |
13 | public function render() { |
14 | return $this->fname . ' ' . $this->arg->inCurlies() . ' '; |
15 | } |
16 | |
17 | public function renderMML( $arguments = [], $state = [] ): string { |
18 | return $this->parseToMML( $this->fname, $arguments, $state ); |
19 | } |
20 | } |