From 7a9054bb3f033c98067b3196378311dae54c5fbf Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Tue, 20 Jan 2026 01:31:53 +0000
Subject: [PATCH] =OperationQueue refactor to the JVBase/managers/queue namespace

---
 inc/blocks/CustomBlocks.php |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/inc/blocks/CustomBlocks.php b/inc/blocks/CustomBlocks.php
index f83b57d..00613e1 100644
--- a/inc/blocks/CustomBlocks.php
+++ b/inc/blocks/CustomBlocks.php
@@ -1165,11 +1165,9 @@
                 $classes[] = $class;
             }
         }
-        $classes =  array_filter($classes, function ($class) {
-            return $class!=='' && !str_starts_with($class, 'wp');
-        });
-
-        return $classes;
+		return array_filter($classes, function ($class) {
+			return $class!=='' && !str_starts_with($class, 'wp');
+		});
     }
     protected function getClass(string $key, string|bool|array|int $value, array $attrs):string|array
     {

--
Gitblit v1.10.0