/**
  * Constructs a PHP_CodeSniffer_CommentParser_FunctionCommentParser.
  *
  * @param string               $comment   The comment to parse.
  * @param PHP_CodeSniffer_File $phpcsFile The file that this comment is in.
  */
 public function __construct($comment, PHP_CodeSniffer_File $phpcsFile)
 {
     parent::__construct($comment, $phpcsFile);
 }
 /**
  * Constructs a PHP_CodeSniffer_CommentParser_FunctionCommentParser.
  *
  * @param string $comment The comment to parse.
  */
 public function __construct($comment)
 {
     parent::__construct($comment);
 }