MediaWiki master
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
25 abstract public function tidy( $text, ?callable $textProcessor = null );
26}
Base class for HTML cleanup utilities.
tidy( $text, ?callable $textProcessor=null)
Clean up HTML.