Skip to content

Commit

Permalink
Fix use in view templates (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
scardinius authored Apr 9, 2024
1 parent e45e4b0 commit 5b9cc55
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/View/Templates/bankSelection.phtml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php use Tpay\Locale\Lang; ?>
<?php use Tpay\OpenApi\Locale\Lang; ?>
<link rel="stylesheet" type="text/css" href="<?php echo $data['static_files_url'] ?>View/Styles/style.css"/>
<div class="tpay-insidebg" id="main-payment">
<?php if ($data['is_simple'] === false) { ?>
Expand Down
2 changes: 1 addition & 1 deletion src/View/Templates/blikForm.phtml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php use Tpay\Locale\Lang; ?>
<?php use Tpay\OpenApi\Locale\Lang; ?>
<link rel="stylesheet" type="text/css" href="<?php echo $data['static_files_url'] ?>View/Styles/style.css"/>
<div class="tpay-insidebg" id="main-payment">
<div class="tpay-header-wrapper">
Expand Down
2 changes: 1 addition & 1 deletion src/View/Templates/gate.phtml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use Tpay\Locale\Lang;
use Tpay\OpenApi\Locale\Lang;

const STATIC_FILES_URL = 'static_files_url';
const CARD_SAVE_ALLOWED = 'card_save_allowed';
Expand Down
2 changes: 1 addition & 1 deletion src/View/Templates/savedCardForm.phtml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php use Tpay\Locale\Lang; ?>
<?php use Tpay\OpenApi\Locale\Lang; ?>
<link rel="stylesheet" type="text/css" href="<?php echo $data['static_files_url'] ?>View/Styles/style.css"/>
<div class="tpay-insidebg" id="main-payment">
<div class="tpay-header-wrapper">
Expand Down

0 comments on commit 5b9cc55

Please sign in to comment.