Closed Hammelpilaw closed 5 years ago
Frontend throws a warning:
Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in ThemeImportListener.php line 90
Module version 2.1.1 Path to file: vendor/contao-bootstrap/grid/src/Listener/ThemeImportListener.php You should use break or continue 2 in line 90.
vendor/contao-bootstrap/grid/src/Listener/ThemeImportListener.php
break
continue 2
continue without parameter in a switch case statement is deprecated since PHP 7.3 and will throw a compile error PHP 8.
continue
Thx for reporting. I transfered the issue to the right repository.
Fixed in version 2.0.8.
Frontend throws a warning:
Module version 2.1.1 Path to file:
vendor/contao-bootstrap/grid/src/Listener/ThemeImportListener.php
You should usebreak
orcontinue 2
in line 90.continue
without parameter in a switch case statement is deprecated since PHP 7.3 and will throw a compile error PHP 8.