Ejemplo n.º 1
0
 /**
  * Constructs a new reflection class instance.
  *
  * @param string  $name       The qualified class name.
  * @param string  $docComment Doc comment for this class.
  * @param integer $modifiers  Modifiers for this class.
  */
 public function __construct($name, $docComment, $modifiers)
 {
     parent::__construct($name, $docComment);
     $this->_modifiers = $modifiers;
 }