Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
log_report.inc
1 <?php
17 require_once SQ_CORE_PACKAGE_PATH.'/report/report.inc';
18 
31 class Log_Report extends Report
32 {
33 
34 
39  public $logname = NULL;
40 
41 
48  function __construct($assetid=0)
49  {
50  parent::__construct($assetid);
51 
52  }//end constructor
53 
54 
63  protected function _regenerateReport()
64  {
65  return FALSE;
66 
67  }//end _regenerateReport()
68 
69 
70 }//end class
71 
72 ?>