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 ResizableTrait
*
* @package DiscordWebhook\Embed\Traits
* @author Scrummer <[email protected]>
*/
trait IconTrait
{
* @var string|null
private $iconUrl;
private $proxyIconUrl;
* @return string|null
public function getIconUrl(): ?string
return $this->iconUrl;
}
* @param string|null $iconUrl
* @return self
public function setIconUrl(?string $iconUrl): self
$this->iconUrl = $iconUrl;
return $this;
public function getProxyIconUrl(): ?string
return $this->proxyIconUrl;
* @param string|null $proxyIconUrl
public function setProxyIconUrl(?string $proxyIconUrl): self
$this->proxyIconUrl = $proxyIconUrl;