HomeCode
Diffusion Zed 0a9fd8135aaa

Code style: ensured if blocks have {}

Description

Code style: ensured if blocks have {}

This code style change hunts some oneliner construction to expand them
to more natural block construction.

e.g. if (condition) doSomething(); now becomes:

if (condition) {

doSomething();

}

Details

Provenance
derecksonAuthored on
Parents
rZED31f636ef2c39: Clean EOF without PHP closing tag
Branches
Unknown
Tags
Unknown