Files
Roman Pyrih 5de35e358d first commit
2026-04-03 10:22:35 +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 );
}