Implement lint
This commit is contained in:
+4
-4
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user