function foo in Coder 7.2
Same name in this branch
Same name and namespace in other branches
- 8.3 tests/Drupal/Commenting/TodoCommentUnitTest.inc \foo()
- 8.3 tests/Drupal/Commenting/FunctionCommentUnitTest.inc \foo()
- 8.3 tests/Drupal/Classes/FullyQualifiedNamespaceUnitTest.1.inc \foo()
- 8.3 tests/Drupal/Files/LineLengthUnitTest.inc \foo()
- 8.3 tests/Drupal/WhiteSpace/CommaUnitTest.inc \foo()
- 8.3 tests/Drupal/bad/bad.php \foo()
- 8.2 coder_sniffer/Drupal/Test/Commenting/FunctionCommentUnitTest.inc \foo()
- 8.2 coder_sniffer/Drupal/Test/Files/LineLengthUnitTest.inc \foo()
- 8.2 coder_sniffer/Drupal/Test/WhiteSpace/CommaUnitTest.inc \foo()
- 8.2 coder_sniffer/Drupal/Test/bad/bad.php \foo()
- 8.2 coder_sniffer/Drupal/Test/good/good.php \foo()
- 8.3.x tests/Drupal/Commenting/TodoCommentUnitTest.inc \foo()
- 8.3.x tests/Drupal/Commenting/FunctionCommentUnitTest.inc \foo()
- 8.3.x tests/Drupal/Classes/FullyQualifiedNamespaceUnitTest.1.inc \foo()
- 8.3.x tests/Drupal/Files/LineLengthUnitTest.inc \foo()
- 8.3.x tests/Drupal/WhiteSpace/CommaUnitTest.inc \foo()
- 8.3.x tests/Drupal/bad/bad.php \foo()
Allowed switch() statement in a function without breaks.
2 calls to foo()
3 string references to 'foo'
- bad.php in coder_sniffer/
Test/ bad/ bad.php - Foo::__toString in coder_sniffer/
Test/ good/ good.php - Returns the string representatuion of this object.
- hook_upgrade_call_alter in coder_upgrade/
coder_upgrade.api.php - Alters function calls using the grammar parser.
File
- coder_sniffer/
Test/ good/ good.php, line 219 - This file contains all the valid notations for the drupal coding standard.
Code
function foo() {
switch ($x) {
case 1:
return 5;
case 2:
return 6;
}
}