The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more
12345678910111213141516171819 <?phpif ($foo || $bar) {}if ($foo || $bar && $baz) {}if ($foo || $bar && $baz) {}if ($foo || $bar && $baz) {}// Spacing after || below is ignored as it is EOL whitespace.if ($foo || $bar && $baz) {}if ($foo || $bar && $baz) {}
<?php
if ($foo || $bar) {}
if ($foo || $bar && $baz) {}
// Spacing after || below is ignored as it is EOL whitespace.
if ($foo ||
$bar
&& $baz
) {
}