for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace DiscordWebhook\Embed\Traits;
/**
* Trait LinkableTrait
*
* @package DiscordWebhook\Embed\Traits
* @author Scrummer <[email protected]>
*/
trait LinkableTrait
{
* @var string|null
private $url;
private $proxyUrl;
* @return string|null
public function getUrl(): ?string
return $this->url;
}
* @param string|null $url
* @return self
public function setUrl(?string $url): self
$this->url = $url;
return $this;
public function getProxyUrl(): ?string
return $this->proxyUrl;
* @param string|null $proxyUrl
public function setProxyUrl(?string $proxyUrl): self
$this->proxyUrl = $proxyUrl;