1
0
Fork 0
mirror of https://github.com/archtechx/laravel-seo.git synced 2025-12-12 01:44:03 +00:00

Fix tests

This commit is contained in:
Samuel Štancl 2021-05-26 13:05:27 +02:00
parent 007a555d57
commit 4f9a014c07

View file

@ -189,7 +189,7 @@ class SEOManager
/** Add a meta tag. */
public function tag(string $property, string $content): static
{
$this->rawTag("<meta property\"{$property}\" content=\"{$content}\" />");
$this->rawTag("<meta property=\"{$property}\" content=\"{$content}\" />");
return $this;
}