[PHP 7.2] My fix for «Warning: count(): Parameter must be an array or an object that implements Countable in Magento/Theme/Block/Html/Topmenu.php on line 241»

It is similar to:

My fix

Step 1

Replace the line:

with the following one:

if ($colBrakes && count($colBrakes) && $colBrakes[$counter]['colbrake']) {

Step 2

Replace the line:

with the following one:

if ($colBrakes && count($colBrakes) && $limit) {
1 Like

Thank you for the help, it saved!