Skip to content

Commit 6c90e83

Browse files
committed
Resolve existing coding standards issue
1 parent 9f23275 commit 6c90e83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/Vault/view/frontend/templates/token_list.phtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/** @var \Magento\Vault\Block\Customer\AccountTokens $block */
88
$tokens = $block->getPaymentTokens();
99
?>
10-
<?php if (count($tokens) !== 0) : ?>
10+
<?php if (count($tokens) !== 0): ?>
1111
<div class="table-wrapper my-credit-cards">
1212
<table class="data table table-credit-cards" id="token-list-table">
1313
<thead>
@@ -17,7 +17,7 @@ $tokens = $block->getPaymentTokens();
1717
</tr>
1818
</thead>
1919
<tbody>
20-
<?php foreach ($tokens as $token) : ?>
20+
<?php foreach ($tokens as $token): ?>
2121
<?= /* @noEscape */ $block->renderTokenHtml($token) ?>
2222
<?php endforeach; ?>
2323
</tbody>

0 commit comments

Comments
 (0)