diff --git a/composer.json b/composer.json index 526daba..4aa74ab 100644 --- a/composer.json +++ b/composer.json @@ -24,8 +24,8 @@ }, "require": { "php": "^8.2", - "illuminate/support": ">=10.0", - "illuminate/view": ">=10.0" + "illuminate/support": "^10.0|^11.0|^12.0", + "illuminate/view": "^10.0|^11.0|^12.0" }, "require-dev": { "orchestra/testbench": ">=8.0", diff --git a/src/SEOManager.php b/src/SEOManager.php index a24d0c2..b3d603a 100644 --- a/src/SEOManager.php +++ b/src/SEOManager.php @@ -240,7 +240,7 @@ class SEOManager /** Has a specific tag been set? */ public function hasRawTag(string $key): bool { - return isset($this->tags[$key]) && ($this->tags[$key] !== null); + return isset($this->tags[$key]); } /** Has a specific meta tag been set? */