diff --git a/inc/Engine/Optimization/LazyRenderContent/Frontend/Processor/HelperTrait.php b/inc/Engine/Optimization/LazyRenderContent/Frontend/Processor/HelperTrait.php index 228c13cdd4..0c15f8abc6 100644 --- a/inc/Engine/Optimization/LazyRenderContent/Frontend/Processor/HelperTrait.php +++ b/inc/Engine/Optimization/LazyRenderContent/Frontend/Processor/HelperTrait.php @@ -30,14 +30,17 @@ protected function get_processed_tags() { * * @param array|string[] $tags Tags to be processed. */ - return wpm_apply_filters_typed( 'array', 'rocket_lazy_render_content_processed_tags', [ - 'DIV', - 'MAIN', - 'FOOTER', - 'SECTION', - 'ARTICLE', - 'HEADER', - ] ); + return wpm_apply_filters_typed( + 'array', + 'rocket_lazy_render_content_processed_tags', + [ + 'DIV', + 'MAIN', + 'FOOTER', + 'SECTION', + 'ARTICLE', + 'HEADER', + ] + ); } - }