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 e388573 commit ce64ec6Copy full SHA for ce64ec6
Tests/ErrorRenderer/FileLinkFormatterTest.php
@@ -27,6 +27,11 @@ public function testWhenNoFileLinkFormatAndNoRequest()
27
28
public function testAfterUnserialize()
29
{
30
+ if (get_cfg_var('xdebug.file_link_format')) {
31
+ // There is not way to override "xdebug.file_link_format" option in a test.
32
+ $this->markTestSkipped('php.ini has a custom option for "xdebug.file_link_format".');
33
+ }
34
+
35
$ide = $_ENV['SYMFONY_IDE'] ?? $_SERVER['SYMFONY_IDE'] ?? null;
36
$_ENV['SYMFONY_IDE'] = $_SERVER['SYMFONY_IDE'] = null;
37
$sut = unserialize(serialize(new FileLinkFormatter()));
0 commit comments