Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| WTSUtils | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| getShadowInfo | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | declare( strict_types = 1 ); |
| 3 | |
| 4 | namespace Wikimedia\Parsoid\Ext; |
| 5 | |
| 6 | use Wikimedia\Parsoid\DOM\Element; |
| 7 | use Wikimedia\Parsoid\Html2Wt\WTSUtils as WTSU; |
| 8 | |
| 9 | class WTSUtils { |
| 10 | |
| 11 | public static function getShadowInfo( |
| 12 | Element $node, string $name, ?string $curVal |
| 13 | ): array { |
| 14 | return WTSU::getShadowInfo( $node, $name, $curVal ); |
| 15 | } |
| 16 | |
| 17 | } |