mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-24 15:53:46 +00:00
dba4fa6265
As we build out these components further we should be encouraging using the component system rather than the SkinVector function calls. This allows us a way to gradually move code over as needed. Bug: T322089 Change-Id: I7b38ae5b6fe2aa42759ae482e7647a26fcedfc38
16 lines
259 B
PHP
16 lines
259 B
PHP
<?php
|
|
namespace MediaWiki\Skins\Vector\Components;
|
|
|
|
/**
|
|
* VectorComponentTableOfContents component
|
|
*/
|
|
class VectorComponentTableOfContents implements VectorComponent {
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getTemplateData(): array {
|
|
return [];
|
|
}
|
|
}
|