Skip to content

Commit 00b927b

Browse files
Merge branch '6.4' into 7.2
* 6.4: [DependencyInjection] Escape parameters before resolving env placeholders
2 parents df5717a + 300b726 commit 00b927b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/TranslatorCacheTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ protected function deleteTmpDir()
4646
continue;
4747
}
4848
if ($path->isDir()) {
49-
rmdir($path->__toString());
49+
@rmdir($path->__toString());
5050
} else {
51-
unlink($path->__toString());
51+
@unlink($path->__toString());
5252
}
5353
}
5454
rmdir($this->tmpDir);

0 commit comments

Comments
 (0)