You are here

function coder_control_structures in Coder 5.2

File

tests/coder_style.inc, line 94
This include file implements tests for the Drupal Standards as defined at http://drupal.org/coding-standards

Code

function coder_control_structures() {
  if ($a == 1) {
  }
  if ($a == 1) {
  }
  else {
  }
  if ($a == 1) {
    $b = 2;
  }
  if ($a == 1) {
    $b = 2;
  }
}