wiki.techinc.nl/includes/tidy/TidyDriverBase.php
Reedy 94c01868b2 Re-enable PSR2.Methods.MethodDeclaration.AbstractAfterVisibility
Change-Id: I50a987edf03cb19bfd707cd00c143c3665eba94f
2015-09-26 16:30:43 +01:00

40 lines
813 B
PHP

<?php
namespace MediaWiki\Tidy;
/**
* Base class for HTML cleanup utilities
*/
abstract class TidyDriverBase {
protected $config;
function __construct( $config ) {
$this->config = $config;
}
/**
* Return true if validate() can be used
*/
public function supportsValidate() {
return false;
}
/**
* Check HTML for errors, used if $wgValidateAllHtml = true.
*
* @param string $text
* @param string &$errorStr Return the error string
* @return bool Whether the HTML is valid
*/
public function validate( $text, &$errorStr ) {
throw new MWException( get_class( $this ) . " does not support validate()" );
}
/**
* Clean up HTML
*
* @param string HTML document fragment to clean up
* @param string The corrected HTML output
*/
abstract public function tidy( $text );
}