This repository has been archived on 2022-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
divi/includes/builder/feature/background-masks/BackgroundMaskStyleBase.php

27 lines
397 B
PHP

<?php
/**
* Abstract Class for Mask Style.
*
* @package Divi
* @sub-package Builder
* @since 4.15.0
*/
if ( ! defined( 'ABSPATH' ) ) {
die( 'Direct access forbidden.' );
}
/**
* ET_Builder_Background_Mask_Style_Base.
*
* @since 4.15.0
*/
abstract class ET_Builder_Background_Mask_Style_Base {
/**
* Configuration.
*
* @return array
*/
abstract public function settings();
}