for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PaymentGateway\PayPalSdk\Subscriptions;
class ShippingDetailName
{
private ?string $fullName = null;
public function __construct(?string $fullName)
$this->fullName = $fullName;
}
public function getFullName(): ?string
return $this->fullName;
public function setFullName(?string $fullName): self
return $this;
public function toArray(): array
return [
'full_name' => $this->fullName
];