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