for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PaymentGateway\PayPalSdk\Products\Concerns;
trait HasImageUrl
{
protected string $imageUrl;
public function getImageUrl(): string
return $this->imageUrl;
}
public function setImageUrl(string $imageUrl = ''): self
$this->imageUrl = $imageUrl;
return $this;