Example #1
0
 public function getReportLink()
 {
     $links = parent::getReportLink();
     return array_merge($links, array("Online lint tool" => "bin/xref-lint.php"));
 }
Example #2
0
 public function __construct($reportId, $reportName, $isCaseSensitive, $supportedFileType)
 {
     parent::__construct($reportId, $reportName);
     $this->supportedFileType = $supportedFileType;
 }
 public function __construct()
 {
     parent::__construct("project-check-missed-parent-constructor", "Project Lint: Missed Parent Constructor");
 }
Example #4
0
 public function __construct()
 {
     parent::__construct(self::REPORT_ID, "List of all files");
 }
Example #5
0
 public function __construct()
 {
     parent::__construct("php-constants", "List of PHP class constants");
 }
Example #6
0
 public function __construct($reportId, $reportName)
 {
     parent::__construct($reportId, $reportName);
 }
Example #7
0
 public function __construct()
 {
     parent::__construct("php-properties", "List of properties of PHP classes");
 }
Example #8
0
 public function __construct()
 {
     parent::__construct("function-signature", "Check functions' signatures and parameters");
 }
Example #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;
     }
 }