Upgarded to 4.17.4

This commit is contained in:
2022-06-23 13:17:18 +01:00
parent 80f1e87db9
commit a04fb0c7af
404 changed files with 54683 additions and 4417 deletions

View File

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