Implement lint

This commit is contained in:
2026-08-27 12:45:30 +02:00
parent 171db88400
commit 17009b641f
41 changed files with 70402 additions and 580 deletions
+4 -4
View File
@@ -7,8 +7,8 @@ use \Settings;
abstract class Geo extends PhpObject {
protected const EXT = '';
const GEO_FOLDER = 'geo';
const OPT_SIMPLE = 'simplification';
private const GEO_FOLDER = 'geo';
private const OPT_SIMPLE = 'simplification';
protected array $asTracks;
protected string $sFilePath;
@@ -16,7 +16,7 @@ abstract class Geo extends PhpObject {
public function __construct(string $sCodeName) {
parent::__construct(get_class($this), Settings::DEBUG, PhpObject::MODE_HTML);
$this->sFilePath = self::getBackEndFilePath($sCodeName);
$this->asTracks = array();
$this->asTracks = [];
}
//Access from backend
@@ -32,4 +32,4 @@ abstract class Geo extends PhpObject {
public function getLog() {
return $this->getCleanMessageStack(PhpObject::NOTICE_TAB);
}
}
}