/**
  * Constructor which calls the parent constructor and makes sure the comment
  * of the method is parsed
  *
  * @param string The class name
  * @param string The method name
  */
 public function __construct($class, $method)
 {
     $this->classname = $class;
     parent::__construct($class, $method);
     $this->parseComment();
 }