Files
2026-04-27 23:13:18 +02:00

11 lines
201 B
PHP

<?php
namespace Elementor\Modules\ContentSanitizer\Interfaces;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
interface Sanitizable {
public function sanitize( $content );
}