Fix linting

This commit is contained in:
Nigel Sheldon 2020-11-21 15:51:56 +01:00
commit 1614145b18
262 changed files with 45324 additions and 42695 deletions

View file

@ -1,14 +1,14 @@
<?php
if(!defined('ONYX')) exit;
if (!defined('ONYX')) {
exit;
}
$___profile['db'] = 'hb_game';
if (getenv("MYSQL_HOST") === False) {
$___profile['host'] = 'localhost';
if (getenv("MYSQL_HOST") === false) {
$___profile['host'] = 'localhost';
} else {
$___profile['host'] = getenv("MYSQL_HOST");
$___profile['host'] = getenv("MYSQL_HOST");
}
$___profile['user'] = 'hb';
$___profile['pass'] = 'hb';
?>