PDF converter * distributed under the OSL-3.0 License * * @package Html2pdf * @author Laurent MINGUET * @copyright 2017 Laurent MINGUET */ namespace Spipu\Html2Pdf\Extension; /** * Interface ExtensionInterface */ interface ExtensionInterface { /** * Get the extension's name * * @return string */ public function getName(); /** * @return array() */ public function getTags(); }