Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Blesta uses Compact Control Readability style. Each statement should begin on its own line. The exception to this rule is do-while.

Warning
titleIncorrect
Code Block
languagephp
if ($foo > $bar)
{
     echo "foo is greater";
} else 
{
    echo "bar is greater";
}
Tip
titleCorrect
Code Block
languagephp
if ($foo > $bar) {
    echo "foo is greater";
}
else {
    echo "bar is greater";
}

$i = 5;
do {
    echo $i--;
} while ($i > 0);

...