Does anyone have a good article or opinions on using this:
if ($foo) :
endif;
endif;
Versus:
if ($foo) {
}
It applies to more than just the IF statements, but I'm seeing it in templatized systems more and more. My personal preference if for the braces version, but I was just wondering if anyone has any insight other than preference. It's easier for me to visually parse braces.
--
Joe