Cleaned last beats of to make everything BC

This commit is contained in:
Alejandro Celaya 2019-11-30 18:08:30 +01:00
parent cf3d763731
commit 6bcdd5e6c8
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ $formatter = [
'name' => Formatter\LineFormatter::class,
'params' => [
'format' => '[%datetime%] %channel%.%level_name% - %message%' . PHP_EOL,
'include_stacktraces' => true,
'allow_inline_line_breaks' => true,
],
];

View file

@ -13,7 +13,7 @@ require 'vendor/autoload.php';
if (class_exists(Dotenv::class)) {
error_reporting(E_ALL);
ini_set('display_errors', '1');
$dotenv = new Dotenv();
$dotenv = new Dotenv(true);
$dotenv->load(__DIR__ . '/../.env');
}