Skip to content

Commit a4c6e5e

Browse files
committed
Fix non-required tags
1 parent 50f94ea commit a4c6e5e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/OpenGraph.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ public function setTwitterSite($content = null): OpenGraph
485485
return $this;
486486
}
487487

488-
public function getTwitterSite(): string
488+
public function getTwitterSite()
489489
{
490490
return $this->twitterSite;
491491
}
@@ -513,7 +513,7 @@ public function setTwitterDescription($content = null): OpenGraph
513513
return $this;
514514
}
515515

516-
public function getTwitterDescription(): string
516+
public function getTwitterDescription()
517517
{
518518
return $this->twitterDescription;
519519
}
@@ -525,7 +525,7 @@ public function setTwitterImage($content = null): OpenGraph
525525
return $this;
526526
}
527527

528-
public function getTwitterImage(): string
528+
public function getTwitterImage()
529529
{
530530
return $this->twitterImage;
531531
}
@@ -537,7 +537,7 @@ public function setTwitterImageAlt($content = null): OpenGraph
537537
return $this;
538538
}
539539

540-
public function getTwitterImageAlt(): string
540+
public function getTwitterImageAlt()
541541
{
542542
return $this->twitterImageAlt;
543543
}

0 commit comments

Comments
 (0)