Addon falsely alerts in PHP about unclosed parentheses
Hallo! I am using N++ latest 64 bits version. The plugin BracketsCheck does not work. I tested version 1.2.2 and 1.2.3. The addon falsely alerts in PHP about unclosed parentheses.
Hi @Pawwwle, I originally developed this plugin to check parenthesis in large SQL files, so it is not well-tested with PHP files.
Please provide a minimal reproducible example of the text you are using and the error the plugin returns you.
Cheers. Nicola
function phpbb_optionset($bit, $set, $data)
{
if ($set && !($data & 1 << $bit))
{
$data += 1 << $bit;
}
else if (!$set && ($data & 1 << $bit))
{
$data -= 1 << $bit;
}
return $data;
}

Have you tried disabling the angle brackets check in the plugin menu?
Yes. An error occurs when checking angle brackets. Can you fix it?
I haven't had time to check it yet, what's the error?