Skip to content

Commit

Permalink
remove mixed type for php7.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidVin357 committed Aug 12, 2023
1 parent 0fd568a commit a3ade2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ViewModel/Cart/Donmo.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class Donmo implements ArgumentInterface
{
private mixed $mode;
private string $mode;
private DonmoConfig $donmoConfig;
private Json $json;
public function __construct(DonmoConfig $donmoConfig, Json $json)
Expand All @@ -20,7 +20,7 @@ public function __construct(DonmoConfig $donmoConfig, Json $json)

public function getIsActive(): bool
{
return $this->donmoConfig->getIsActive();
return $this->donmoConfig->getIsActive();
}

public function getDonmoConfig(): string
Expand Down

0 comments on commit a3ade2e

Please sign in to comment.