MediaWiki REL1_39
TidyDriverBase.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Tidy;
4
8abstract class TidyDriverBase {
9 protected $config;
10
11 public function __construct( $config ) {
12 $this->config = $config;
13 }
14
20 public function supportsValidate() {
21 wfDeprecated( __METHOD__, '1.36' );
22 return false;
23 }
24
35 abstract public function tidy( $text, ?callable $textProcessor = null );
36}
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Logs a warning that a deprecated feature was used.
Base class for HTML cleanup utilities.
tidy( $text, ?callable $textProcessor=null)
Clean up HTML.
supportsValidate()
Return true if validate() can be used.