You are here

public property FunctionCommentSniff::$allowedTypes in Coder 8.2

Same name and namespace in other branches
  1. 8.3 coder_sniffer/Drupal/Sniffs/Commenting/FunctionCommentSniff.php \Drupal\Sniffs\Commenting\FunctionCommentSniff::allowedTypes
  2. 8.3.x coder_sniffer/Drupal/Sniffs/Commenting/FunctionCommentSniff.php \Drupal\Sniffs\Commenting\FunctionCommentSniff::allowedTypes

An array of variable types for param/var we will check.

Type: array(string)

File

coder_sniffer/Drupal/Sniffs/Commenting/FunctionCommentSniff.php, line 57

Class

FunctionCommentSniff
Parses and verifies the doc comments for functions. Largely copied from PHP_CodeSniffer\Standards\Squiz\Sniffs\Commenting\FunctionCommentSniff.

Namespace

Drupal\Sniffs\Commenting

Code

public $allowedTypes = array(
  'array',
  'mixed',
  'object',
  'resource',
  'callable',
);