mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Description2
synced 2024-11-30 17:34:11 +00:00
14 lines
297 B
PHP
14 lines
297 B
PHP
|
<?php
|
||
|
|
||
|
namespace MediaWiki\Extension\Description2;
|
||
|
|
||
|
interface DescriptionProvider {
|
||
|
/**
|
||
|
* Extracts description from the HTML representation of a page.
|
||
|
*
|
||
|
* @param string $text HTML to extract the description from.
|
||
|
* @return ?string
|
||
|
*/
|
||
|
public function derive( string $text ): ?string;
|
||
|
}
|