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