function coder_array_ticks in Coder 5.2
@file This include file implements tests for the Drupal Standards as defined at http://drupal.org/coding-standards
It is never actually called by the coder code, but is read when running admin/coder/coder.
File
- tests/
coder_style.inc, line 12 - This include file implements tests for the Drupal Standards as defined at http://drupal.org/coding-standards
Code
function coder_array_ticks() {
$some_array[FOO_BAR] = $baz;
// This is ok.
$some_array[foo] = $baz;
// This is not.
}