Skip to content

Commit

Permalink
Merge pull request #21 from donmo-roundup/php7.4-minor-fix
Browse files Browse the repository at this point in the history
remove mixed type for php7.4 support
  • Loading branch information
DavidVin357 committed Aug 12, 2023
2 parents 0fd568a + a3ade2e commit a78a050
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 a78a050

Please sign in to comment.