You are here

function test28 in Coder 8.3.x

Same name in this branch
  1. 8.3.x tests/Drupal/Commenting/FunctionCommentUnitTest.inc \test28()
  2. 8.3.x tests/Drupal/bad/bad.php \test28()
Same name and namespace in other branches
  1. 8.3 tests/Drupal/Commenting/FunctionCommentUnitTest.inc \test28()
  2. 8.3 tests/Drupal/bad/bad.php \test28()
  3. 8.2 coder_sniffer/Drupal/Test/Commenting/FunctionCommentUnitTest.inc \test28()
  4. 8.2 coder_sniffer/Drupal/Test/bad/bad.php \test28()

Return docs should not contain variable names.

Return value

string $profile The profile.

File

tests/Drupal/Commenting/FunctionCommentUnitTest.inc, line 337
Some function comment tests.

Code

function test28() {
  $profile = 'x';
  return $profile;
}