Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions src/Rede/Authorization.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ class Authorization

private ?string $tid = null;

private ?string $txId = null;

private ?Brand $brand = null;

/**
Expand Down Expand Up @@ -306,6 +308,21 @@ public function setTid(?string $tid): static
return $this;
}

public function getTxId(): ?string
{
return $this->txId;
}

/**
* @return $this
*/
public function setTxId(?string $txId): static
{
$this->txId = $txId;

return $this;
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Foi identificado um espaço em branco extra no final desta linha. Para manter a consistência do estilo de código e evitar ruído em futuras comparações de código, por favor, remova-o.

    }


public function getBrand(): ?Brand
{
return $this->brand;
Expand Down