Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | namespace MediaWiki\Skins\Vector\Components; |
3 | |
4 | /** |
5 | * Component interface for managing Vector-modified components |
6 | * |
7 | * @internal |
8 | */ |
9 | interface VectorComponent { |
10 | /** |
11 | * @return array of Mustache compatible data |
12 | */ |
13 | public function getTemplateData(): array; |
14 | } |