Minor - format code using phpfixer

pull/2458/head
jmontoyaa 8 years ago
parent 5e5aba7da3
commit 1c26017924
  1. 4
      cli-config.php
  2. 454
      main/inc/lib/sessionmanager.lib.php

@ -26,13 +26,13 @@ if (!is_file($configurationFile)) {
require_once $configurationFile;
$database = new \Database();
$dbParams = array(
$dbParams = [
'driver' => 'pdo_mysql',
'host' => $_configuration['db_host'],
'user' => $_configuration['db_user'],
'password' => $_configuration['db_password'],
'dbname' => $_configuration['main_database']
);
];
$database->connect($dbParams, realpath(__DIR__).'/', realpath(__DIR__).'/');
$entityManager = $database::getManager();

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save