mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-27 16:26:37 +03:00
Cleaned last beats of to make everything BC
This commit is contained in:
parent
cf3d763731
commit
6bcdd5e6c8
2 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ $formatter = [
|
||||||
'name' => Formatter\LineFormatter::class,
|
'name' => Formatter\LineFormatter::class,
|
||||||
'params' => [
|
'params' => [
|
||||||
'format' => '[%datetime%] %channel%.%level_name% - %message%' . PHP_EOL,
|
'format' => '[%datetime%] %channel%.%level_name% - %message%' . PHP_EOL,
|
||||||
'include_stacktraces' => true,
|
'allow_inline_line_breaks' => true,
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ require 'vendor/autoload.php';
|
||||||
if (class_exists(Dotenv::class)) {
|
if (class_exists(Dotenv::class)) {
|
||||||
error_reporting(E_ALL);
|
error_reporting(E_ALL);
|
||||||
ini_set('display_errors', '1');
|
ini_set('display_errors', '1');
|
||||||
$dotenv = new Dotenv();
|
$dotenv = new Dotenv(true);
|
||||||
$dotenv->load(__DIR__ . '/../.env');
|
$dotenv->load(__DIR__ . '/../.env');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue