You are here

function test22 in Coder 8.3

Same name and namespace in other branches
  1. 8.2 coder_sniffer/Drupal/Test/Commenting/FunctionCommentUnitTest.inc \test22()
  2. 8.2 coder_sniffer/Drupal/Test/good/good.php \test22()
  3. 8.3.x tests/Drupal/Commenting/FunctionCommentUnitTest.inc \test22()

Test for allowed param var types.

Parameters

array|bool|float|int|mixed|object|string|resource|callable $arg1: All of the above types are valid.

Array|boolean|integer|str|stdClass|NULL $arg2: All of the above types are invalid.

array()|Boolean|number|String $arg3: All of the above types are invalid.

type $arg4: All of the above types are invalid.

FALSE|TRUE|Int $arg5: All of the above types are invalid.

Bool|Integer $arg6: All of the above types are invalid.

File

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

Code

function test22($arg1, $arg2, $arg3, $arg4, $arg5, $arg6) {
}