public function Drupal_CommentParser_ReturnElement::getValue in Coder 7.2
Returns the value of the tag.
Return value
string
File
- coder_sniffer/
Drupal/ CommentParser/ ReturnElement.php, line 84
Class
- Drupal_CommentParser_ReturnElement
- A class to represent return elements. We need this class because PHP_CodeSniffer_CommentParser_PairElement lacks the getWhitespaceBeforeComment() method.
Code
public function getValue() {
return $this->value;
}