oont-contents/plugins/elementor/modules/atomic-widgets/props-resolver/transformer-base.php
2025-02-08 15:10:23 +01:00

10 lines
225 B
PHP

<?php
namespace Elementor\Modules\AtomicWidgets\PropsResolver;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
abstract class Transformer_Base {
abstract public function transform( $value, $key );
}