Skip to content

Commit

Permalink
Fix cs fixer errors (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mavlyan authored Feb 17, 2020
1 parent 5c59f82 commit 5961a57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Model/Atol/RequestForVersion4.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function jsonSerialize(): array
if ($this->getAdditionalUserProps()) {
$data['receipt']['additional_user_props'] = [
'name' => $this->getAdditionalUserProps()->getName(),
'value' => $this->getAdditionalUserProps()->getValue()
'value' => $this->getAdditionalUserProps()->getValue(),
];
}

Expand Down
4 changes: 3 additions & 1 deletion Model/Atol/UserProp.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,17 @@
class UserProp implements UserPropInterface
{
// phpcs:disable

/**
* @var string
* @var string
*/
private $name = '';

/**
* @var string
*/
private $value = '';

// phpcs:enable

/**
Expand Down

0 comments on commit 5961a57

Please sign in to comment.