. */ namespace SP\Domain\Account\Models; /** * Class PublicLinkList */ class PublicLinkList extends PublicLink { protected ?string $userName = null; protected ?string $userLogin = null; protected ?string $accountName = null; public function getName(): ?string { return $this->accountName; } public function getUserLogin(): ?string { return $this->userLogin; } public function getAccountName(): ?string { return $this->accountName; } }