Skip to content

Commit f781ff9

Browse files
committed
resolve phpstan issue, restrict version constraints
1 parent 5f2a6d6 commit f781ff9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
},
2525
"require": {
2626
"php": "^8.2",
27-
"illuminate/support": ">=10.0",
28-
"illuminate/view": ">=10.0"
27+
"illuminate/support": "^10.0|^11.0|^12.0",
28+
"illuminate/view": "^10.0|^11.0|^12.0"
2929
},
3030
"require-dev": {
3131
"orchestra/testbench": ">=8.0",

src/SEOManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ public function tags(): array
240240
/** Has a specific tag been set? */
241241
public function hasRawTag(string $key): bool
242242
{
243-
return isset($this->tags[$key]) && ($this->tags[$key] !== null);
243+
return isset($this->tags[$key]);
244244
}
245245

246246
/** Has a specific meta tag been set? */

0 commit comments

Comments
 (0)