Skip to content

Commit 26e68a9

Browse files
committed
Merge branch '7.3' into 7.4
* 7.3: account for error message changes in PHP 8.5 [Form] Fix interface name in Guess documentation Bump Symfony version to 7.3.3 Update VERSION for 7.3.2 Update CHANGELOG for 7.3.2 Bump Symfony version to 6.4.25 Update VERSION for 6.4.24 Update CONTRIBUTORS for 6.4.24 Update CHANGELOG for 6.4.24 [DependencyInjection] Escape parameters before resolving env placeholders [Validator] review Persian translation for Twig template
2 parents a616300 + 81b48f4 commit 26e68a9

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)