We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b29d05c commit 3d39f73Copy full SHA for 3d39f73
tests/bootstrap.php
@@ -5,6 +5,12 @@
5
use Symfony\Bundle\FrameworkBundle\Console\Application;
6
use Symfony\Component\Console\Input\ArrayInput;
7
8
+// needed to avoid encoding issues when running tests on different platforms
9
+setlocale(LC_ALL, 'en_US.UTF-8');
10
+
11
+// needed to avoid failed tests when other timezones than UTC are configured for PHP
12
+date_default_timezone_set('UTC');
13
14
require dirname(__DIR__) . '/vendor/autoload.php';
15
16
(new Dotenv())->bootEnv(dirname(__DIR__) . '/.env');
0 commit comments