After upgrading PHP I'm not feeling comfortable about how the error reporting works.
With the previous version I got reports caused by errors like:
if($a > 1)
{
}
(empty curly braces)
or forgotten curly braces at the ebd of the script
These don't show up anymore which leads to a never ending search for curly braces...
How can I get them back?
With the previous version I got reports caused by errors like:
if($a > 1)
{
}
(empty curly braces)
or forgotten curly braces at the ebd of the script
These don't show up anymore which leads to a never ending search for curly braces...
How can I get them back?