예제 #1
0
 public function __construct()
 {
     parent::__construct("php-lint", "Lint report");
 }
예제 #2
0
파일: Methods.php 프로젝트: gariev/xref
 public function __construct($reportId, $reportName, $isCaseSensitive, $supportedFileType)
 {
     parent::__construct($reportId, $reportName);
     $this->supportedFileType = $supportedFileType;
 }
예제 #3
0
 public function __construct()
 {
     parent::__construct("project-check-missed-parent-constructor", "Project Lint: Missed Parent Constructor");
 }
예제 #4
0
 public function __construct()
 {
     parent::__construct(self::REPORT_ID, "List of all files");
 }
예제 #5
0
 public function __construct()
 {
     parent::__construct("php-constants", "List of PHP class constants");
 }
예제 #6
0
파일: interfaces.php 프로젝트: gariev/xref
 public function __construct($reportId, $reportName)
 {
     parent::__construct($reportId, $reportName);
 }
예제 #7
0
 public function __construct()
 {
     parent::__construct("php-properties", "List of properties of PHP classes");
 }
예제 #8
0
 public function __construct()
 {
     parent::__construct("function-signature", "Check functions' signatures and parameters");
 }
예제 #9
0
 public function __construct()
 {
     parent::__construct("project-check", "Cross-reference integrity check");
     $ignore_missing_classes = XRef::getConfigValue("lint.ignore-missing-class", array());
     foreach ($ignore_missing_classes as $class_name) {
         $this->ignore_missing_classes[strtolower($class_name)] = true;
     }
 }