CRITICAL
Rule Definition
Using the proper Indentation in control structures helps to read , understand , modify , maintain and enhance the code easily.
Remediation
Try to reduce the number of artifacts having control structures without proper spacing before and after open\close brace.
Violation Code Sample
foreach ($this as $that ) {
}
do {
} while ( true )
Fixed Code Sample
foreach ($this as $that) { //Spacing between $that and ) is removed
}
do {
} while (true)
Reference
https://pear.php.net/reference/PHP_CodeSniffer-latest/PHP_CodeSniffer/PSR2_Sniffs_ControlStructures_ControlStructureSpacingSniff.html
Related Technologies
Technical Criterion
Documentation - Style Conformity
About CAST Appmarq
CAST Appmarq is by far the biggest repository of data about real IT systems. It's built on thousands of analyzed applications, made of 35 different technologies, by over 300 business organizations across major verticals. It provides IT Leaders with factual key analytics to let them know if their applications are on track.