Added Missing PhpDoc

This commit is contained in:
netkas 2024-10-07 15:36:08 -04:00
parent 9a113db0a0
commit 1930ed5c1c

View file

@ -98,6 +98,12 @@
return $this->url;
}
/**
* Sets the URL that will be opened after user taps on the text
*
* @param string|null $url
* @return MessageEntity
*/
public function setUrl(?string $url): MessageEntity
{
$this->url = $url;