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 20aa5d6 commit 7e59220Copy full SHA for 7e59220
app/code/Magento/Catalog/Model/Observer.php
@@ -5,6 +5,9 @@
5
*/
6
namespace Magento\Catalog\Model;
7
8
+/**
9
+ * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
10
+ */
11
class Observer
12
{
13
/**
app/code/Magento/Theme/Block/Html/Topmenu.php
@@ -229,8 +229,8 @@ protected function _getHtml(
229
230
$html .= '<li ' . $this->_getRenderedMenuItemAttributes($child) . '>';
231
$html .= '<a href="' . $child->getUrl() . '" ' . $outermostClassCode . '><span>' . $this->escapeHtml(
232
- $child->getName()
233
- ) . '</span></a>' . $this->_addSubMenu(
+ $child->getName()
+ ) . '</span></a>' . $this->_addSubMenu(
234
$child,
235
$childLevel,
236
$childrenWrapClass,
0 commit comments