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.
continue without parameter in a switch case statement is deprecated since PHP 7.3 and will throw a compile error PHP 8.
Frontend throws a warning:
Module version 2.1.1
Path to file:
vendor/contao-bootstrap/grid/src/Listener/ThemeImportListener.phpYou should use
breakorcontinue 2in line 90.continuewithout parameter in a switch case statement is deprecated since PHP 7.3 and will throw a compile error PHP 8.