for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PaymentGateway\PayPalSdk\Subscriptions\Concerns;
trait HasPlanStatus
{
protected string $planStatus;
public function getPlanStatus(): string
return $this->planStatus;
}
public function setPlanStatus(string $planStatus): self
$this->planStatus = $planStatus;
return $this;