You are here

function test38 in Coder 8.3.x

Same name and namespace in other branches
  1. 8.3 tests/Drupal/Commenting/FunctionCommentUnitTest.inc \test38()

Yield from should be a recognised return statement.

Return value

Generator Generator value.

File

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

Code

function test38($a, $b) {
  yield from [
    $a,
    $b,
  ];
}