Current File : /home/jvzmxxx/wiki1/extensions/Flow/includes/Parsoid/Fixer.php
<?php

namespace Flow\Parsoid;

use DOMNode;
use Title;

interface Fixer {
	/**
	 * @param DOMNode $node
	 * @param Title $title
	 */
	public function apply( DOMNode $node, Title $title );

	/**
	 * @return string
	 */
	public function getXPath();
}