Skip to content

Commit a28b80a

Browse files
author
Joan He
committed
MAGETWO-99282: Eliminate @escapeNotVerified in Magento_Catalog module
1 parent fa71e40 commit a28b80a

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

app/code/Magento/Catalog/view/frontend/templates/product/widget/compared/grid.phtml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
*/
66
?>
77
<?php
8-
/**
9-
* @var $block \Magento\Ui\Block\Wrapper
10-
*/
8+
// phpcs:disable Magento2.PHP.ShortEchoSyntax.ShortEchoTag
9+
10+
/** @var $block \Magento\Ui\Block\Wrapper */
1111
?>
1212

13-
<?= /* @noEscape */ $block->renderApp(
13+
<?php /* @noEscape */ echo $block->renderApp(
1414
[
1515
'widget_columns' => [
1616
'displayMode' => 'grid'

app/code/Magento/Catalog/view/frontend/templates/product/widget/compared/list.phtml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
*/
66
?>
77
<?php
8-
/**
9-
* @var $block \Magento\Ui\Block\Wrapper
10-
*/
8+
// phpcs:disable Magento2.PHP.ShortEchoSyntax.ShortEchoTag
9+
10+
/** @var $block \Magento\Ui\Block\Wrapper */
1111
?>
1212

13-
<?= /* @noEscape */ $block->renderApp(
13+
<?php /* @noEscape */ echo $block->renderApp(
1414
[
1515
'widget_columns' => [
1616
'displayMode' => 'list'

app/code/Magento/Catalog/view/frontend/templates/product/widget/compared/sidebar.phtml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
*/
66
?>
77
<?php
8-
/**
9-
* @var $block \Magento\Ui\Block\Wrapper
10-
*/
8+
// phpcs:disable Magento2.PHP.ShortEchoSyntax.ShortEchoTag
9+
10+
/** @var $block \Magento\Ui\Block\Wrapper */
1111
?>
1212

13-
<?= /* @noEscape */ $block->renderApp(
13+
<?php /* @noEscape */ echo $block->renderApp(
1414
[
1515
'listing' => [
1616
'displayMode' => 'grid'

app/code/Magento/Catalog/view/frontend/templates/product/widget/viewed/sidebar.phtml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
*/
66
?>
77
<?php
8-
/**
9-
* @var $block \Magento\Ui\Block\Wrapper
10-
*/
8+
// phpcs:disable Magento2.PHP.ShortEchoSyntax.ShortEchoTag
9+
10+
/** @var $block \Magento\Ui\Block\Wrapper */
1111
?>
1212

13-
<?= /* @noEscape */ $block->renderApp(
13+
<?php /* @noEscape */ echo $block->renderApp(
1414
[
1515
'listing' => [
1616
'displayMode' => 'grid'

0 commit comments

Comments
 (0)