Skip to content

Commit 18165b0

Browse files
Merge branch '6.2' into 6.3
* 6.2: [Validator] Add missing validator translations in Polish language [HttpClient] Fix encoding some characters in query strings [SecurityBundle] Remove last usages of tag `security.remember_me_aware` [VarDumper] Dumping DateTime throws error if getTimezone is false Only update autoload_runtime.php when it changed [Intl] Update the ICU data to 73.2 [HttpClient] Force int conversion for floated multiplier for GenericRetryStrategy [FrameworkBundle] Ignore missing directories in about command Revert "[Messenger] Respect `isRetryable` decision of the retry strategy when deciding if failed message should be re-delivered" [Validator][Translator] Fix xlf files for en & fr translations. Bug introduced by #50590 Add missing EN and FR translations for newest constraints
2 parents e302371 + 4a6c2f3 commit 18165b0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Command/AboutCommand.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,10 @@ private static function formatFileSize(string $path): string
101101
if (is_file($path)) {
102102
$size = filesize($path) ?: 0;
103103
} else {
104+
if (!is_dir($path)) {
105+
return 'n/a';
106+
}
107+
104108
$size = 0;
105109
foreach (new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($path, \RecursiveDirectoryIterator::SKIP_DOTS | \RecursiveDirectoryIterator::FOLLOW_SYMLINKS)) as $file) {
106110
if ($file->isReadable()) {

DependencyInjection/Compiler/UnusedTagsPass.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ class UnusedTagsPass implements CompilerPassInterface
8686
'scheduler.schedule_provider',
8787
'security.authenticator.login_linker',
8888
'security.expression_language_provider',
89-
'security.remember_me_aware',
9089
'security.remember_me_handler',
9190
'security.voter',
9291
'serializer.encoder',

0 commit comments

Comments
 (0)