assure/vendor/spipu/html2pdf/src/Security/SecurityInterface.php
2025-12-05 09:34:39 +00:00

26 lines
505 B
PHP
Executable File

<?php
/**
* Html2Pdf Library - Security
*
* HTML => PDF converter
* distributed under the OSL-3.0 License
*
* @package Html2pdf
* @author Laurent MINGUET <webmaster@html2pdf.fr>
* @copyright 2025 Laurent MINGUET
*/
namespace Spipu\Html2Pdf\Security;
use Spipu\Html2Pdf\Exception\HtmlParsingException;
interface SecurityInterface
{
/**
* @param string $path
* @return void
* @throws HtmlParsingException
*/
public function checkValidPath(string $path): void;
}