diff --git a/framework/core/src/Extend/Link.php b/framework/core/src/Extend/Link.php index b9c484414..e3669876a 100644 --- a/framework/core/src/Extend/Link.php +++ b/framework/core/src/Extend/Link.php @@ -21,14 +21,14 @@ class Link implements ExtenderInterface protected $setRel = null; protected $setTarget = null; - public function setRel(callable $callable): static + public function setRel(callable $callable) { $this->setRel = $callable; return $this; } - public function setTarget(callable $callable): static + public function setTarget(callable $callable) { $this->setTarget = $callable;