Skip to content

Commit

Permalink
Add card group
Browse files Browse the repository at this point in the history
  • Loading branch information
krzGablo committed Jan 16, 2024
1 parent dd7e542 commit 213e571
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Model/ApiFacade/CardTransaction/CardApiFacade.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ private function getCurrent()

private function createCardOriginApiInstance(TpayInterface $tpay, TpayTokensService $tokensService, TpayService $tpayService)
{
if (!$tpay->isOriginApiEnabled()()){
if (!$tpay->isOriginApiEnabled()) {
$this->cardOrigin = null;

return;
Expand Down
2 changes: 1 addition & 1 deletion Model/ApiFacade/TpayConfig/ConfigFacade.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ private function getCurrentApi()

private function createOriginApiInstance(TpayInterface $tpay, Repository $assetRepository, TpayTokensService $tokensService)
{
if (!$tpay->isOriginApiEnabled()){
if (!$tpay->isOriginApiEnabled()) {
$this->originApi = null;

return;
Expand Down
2 changes: 1 addition & 1 deletion Model/ApiFacade/Transaction/TransactionApiFacade.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private function getCurrentApi()

private function createOriginApiInstance(TpayInterface $tpay)
{
if (!$tpay->isOriginApiEnabled()){
if (!$tpay->isOriginApiEnabled()) {
$this->originApi = null;

return;
Expand Down

0 comments on commit 213e571

Please sign in to comment.