You are here

public function Link::setUrl in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Link.php \Drupal\Core\Link::setUrl()
  2. 9 core/lib/Drupal/Core/Link.php \Drupal\Core\Link::setUrl()

Sets the URL of this link.

Parameters

Url $url: The URL object to set

Return value

$this

File

core/lib/Drupal/Core/Link.php, line 145

Class

Link
Defines an object that holds information about a link.

Namespace

Drupal\Core

Code

public function setUrl(Url $url) {
  $this->url = $url;
  return $this;
}