You are here

public function Drupal_CommentParser_FunctionCommentParser::getParams in Coder 7.2

Returns the parameter elements that this function comment contains.

Returns an empty array if no parameter elements are contained within this function comment.

Return value

array(Drupal_CommentParser_ParameterElement)

File

coder_sniffer/Drupal/CommentParser/FunctionCommentParser.php, line 89

Class

Drupal_CommentParser_FunctionCommentParser
Parses function doc comments.

Code

public function getParams() {
  return $this->params;
}