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,11 +1,11 @@
<?php
if(!defined('ONYX')) exit;
if (!defined('ONYX')) {
exit;
}
if(defined('DB_TYPE'))
{
switch(DB_TYPE)
{
if (defined('DB_TYPE')) {
switch (DB_TYPE) {
case 'mysql':
case 'postgresql':
@ -14,7 +14,6 @@ if(defined('DB_TYPE'))
require_once(DB_TYPE.'.class.php');
break;
default: trigger_error('Base de donnee inconnue',E_USER_ERROR);
default: trigger_error('Base de donnee inconnue', E_USER_ERROR);
}
}
?>
}