Skip to content

Commit

Permalink
Fixed #3839
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejpeters authored Jan 7, 2025
1 parent 35e765d commit 7934d41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/Gateways.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public function getGatewayById(int $id): ?Gateway
*/
public function getGatewayByHandle(string $handle): ?Gateway
{
return ArrayHelper::firstWhere($this->_getAllGateways(), 'handle', $handle);
return ArrayHelper::firstWhere($this->getAllGateways(), 'handle', $handle);
}

/**
Expand Down

0 comments on commit 7934d41

Please sign in to comment.