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/managers/SchemaManager.php |   44 +++++++++++++++++++++-----------------------
 1 files changed, 21 insertions(+), 23 deletions(-)

diff --git a/inc/managers/SchemaManager.php b/inc/managers/SchemaManager.php
index c659277..1ba6204 100644
--- a/inc/managers/SchemaManager.php
+++ b/inc/managers/SchemaManager.php
@@ -1090,29 +1090,27 @@
     private function getHomeSchema():array
     {
         // Main dataset schema for homepage
-        $schema = [
-            '@type' => 'WebPage',
-            '@id' => get_home_url() . '/#webpage',
-            'url' => get_home_url(),
-            'name' => get_bloginfo('name') . ' | Edmonton\'s Best Tattoo Artists',
-            'description' => 'Discover Edmonton\'s top tattoo artists, shops, and styles. Your comprehensive guide to Edmonton\'s tattoo scene.',
-            'isPartOf' => [
-                '@id' => get_home_url() . '/#website'
-            ],
-            'about' => [
-                '@type' => 'Dataset',
-                'name' => 'Edmonton Tattoo Artist Directory',
-                'description' => 'Comprehensive directory of professional tattoo artists in Edmonton, Alberta',
-                'creator' => [
-                    '@id' => 'https://legacytattooremoval.ca/#organization'
-                ],
-                'publisher' => [
-                    '@id' => 'https://legacytattooremoval.ca/#organization'
-                ]
-            ],
-        ];
-
-        return $schema;
+		return [
+			'@type' => 'WebPage',
+			'@id' => get_home_url() . '/#webpage',
+			'url' => get_home_url(),
+			'name' => get_bloginfo('name') . ' | Edmonton\'s Best Tattoo Artists',
+			'description' => 'Discover Edmonton\'s top tattoo artists, shops, and styles. Your comprehensive guide to Edmonton\'s tattoo scene.',
+			'isPartOf' => [
+				'@id' => get_home_url() . '/#website'
+			],
+			'about' => [
+				'@type' => 'Dataset',
+				'name' => 'Edmonton Tattoo Artist Directory',
+				'description' => 'Comprehensive directory of professional tattoo artists in Edmonton, Alberta',
+				'creator' => [
+					'@id' => 'https://legacytattooremoval.ca/#organization'
+				],
+				'publisher' => [
+					'@id' => 'https://legacytattooremoval.ca/#organization'
+				]
+			],
+		];
     }
 
     /**

--
Gitblit v1.10.0