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
+16 -17
View File
@@ -1,20 +1,19 @@
<?php
class Settings
{
const DB_SERVER = 'localhost';
const DB_LOGIN = '';
const DB_PASS = '';
const DB_NAME = 'livetrail';
const DB_ENC = 'utf8mb4';
const TEXT_ENC = 'UTF-8';
const TIMEZONE = 'Europe/Zurich';
const MAIL_SERVER = '';
const MAIL_FROM = '';
const MAIL_USER = '';
const MAIL_PASS = '';
const WEATHER_TOKEN = ''; //visualcrossing.com
const TIMEZONE_USER = ''; //geonames.org
const DEBUG = true;
const LOG_FOLDER = __DIR__;
class Settings {
public const DB_SERVER = 'localhost';
public const DB_LOGIN = '';
public const DB_PASS = '';
public const DB_NAME = 'livetrail';
public const DB_ENC = 'utf8mb4';
public const TEXT_ENC = 'UTF-8';
public const TIMEZONE = 'Europe/Zurich';
public const MAIL_SERVER = '';
public const MAIL_FROM = '';
public const MAIL_USER = '';
public const MAIL_PASS = '';
public const WEATHER_TOKEN = ''; //visualcrossing.com
public const TIMEZONE_USER = ''; //geonames.org
public const DEBUG = true;
public const LOG_FOLDER = __DIR__;
}