Skip to content

Commit

Permalink
Merge pull request #36 from teamnovu/bugfix/mismatching-modifiers-and…
Browse files Browse the repository at this point in the history
…-types

Bug: $uuid must be protected
  • Loading branch information
michaelraess authored Feb 1, 2023
2 parents 88271a4 + d2bc60c commit a1a1c0c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Payrexx/Models/Request/Design.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public function getResponseModel()
/**
* @param string $uuid
*/
public function setUuid(string $uuid): void
public function setUuid($uuid): void
{
$this->uuid = $uuid;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/Payrexx/Models/Request/QrCode.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function getUuid(): string
/**
* @param string $uuid
*/
public function setUuid(string $uuid): void
public function setUuid($uuid): void
{
$this->uuid = $uuid;
}
Expand Down
1 change: 0 additions & 1 deletion lib/Payrexx/Models/Response/Transaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
class Transaction extends \Payrexx\Models\Request\Transaction
{

private $uuid;
private $time;
private $status;
private $lang;
Expand Down

0 comments on commit a1a1c0c

Please sign in to comment.