We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f23275 commit 6c90e83Copy full SHA for 6c90e83
app/code/Magento/Vault/view/frontend/templates/token_list.phtml
@@ -7,7 +7,7 @@
7
/** @var \Magento\Vault\Block\Customer\AccountTokens $block */
8
$tokens = $block->getPaymentTokens();
9
?>
10
-<?php if (count($tokens) !== 0) : ?>
+<?php if (count($tokens) !== 0): ?>
11
<div class="table-wrapper my-credit-cards">
12
<table class="data table table-credit-cards" id="token-list-table">
13
<thead>
@@ -17,7 +17,7 @@ $tokens = $block->getPaymentTokens();
17
</tr>
18
</thead>
19
<tbody>
20
- <?php foreach ($tokens as $token) : ?>
+ <?php foreach ($tokens as $token): ?>
21
<?= /* @noEscape */ $block->renderTokenHtml($token) ?>
22
<?php endforeach; ?>
23
</tbody>
0 commit comments