Source for file Comment.php

Documentation is available at Comment.php

  1. <?php
  2.  
  3. /**
  4.  * Concrete comment token class. Generally will be ignored.
  5.  */
  6. {
  7.     public $data/**< Character data within comment. */
  8.     /**
  9.      * Transparent constructor.
  10.      * 
  11.      * @param $data String comment data.
  12.      */
  13.     public function __construct($data$line null{
  14.         $this->data = $data;
  15.         $this->line = $line;
  16.     }
  17. }

Documentation generated on Thu, 19 Jun 2008 18:48:56 -0400 by phpDocumentor 1.4.2