<?php
namespace Elementor\Data\V2\Base\Processor;
use Elementor\Data\V2\Base\Processor;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
abstract class Before extends Processor {
public function get_conditions( $args ) {
return true;
}
abstract public function apply( $args );
}