From 67461c69bcf4730809208a6dcdf001eb4079c375 Mon Sep 17 00:00:00 2001 From: Adam <607975+adam-vessey@users.noreply.github.com> Date: Wed, 10 Jul 2024 14:11:55 -0300 Subject: [PATCH] Fix for coding standards. --- modules/islandora_iiif/src/Plugin/views/style/IIIFManifest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/islandora_iiif/src/Plugin/views/style/IIIFManifest.php b/modules/islandora_iiif/src/Plugin/views/style/IIIFManifest.php index 42984eba8..28077aee6 100644 --- a/modules/islandora_iiif/src/Plugin/views/style/IIIFManifest.php +++ b/modules/islandora_iiif/src/Plugin/views/style/IIIFManifest.php @@ -494,7 +494,7 @@ protected function defineOptions() { */ protected function addSearchEndpoint(array &$json, array $url_components) { $url_base = $this->getRequest()->getSchemeAndHttpHost(); - $hocr_search_path = $this->options['search_endpoint'] ?? null; + $hocr_search_path = $this->options['search_endpoint'] ?? NULL; if ($hocr_search_path) { $hocr_search_url = $url_base . '/' . ltrim($hocr_search_path, '/');