Skip to content

Commit 5d2cc4a

Browse files
Merge branch '4.4'
* 4.4: [Debug] Improve UPGRADE files remove wrongly added legacy group from test consistently throw NotSupportException [HttpKernel] Clarify error handler restoring process again [HttpClient] Remove CURLOPT_CONNECTTIMEOUT_MS curl opt add missing conflict rule [Intl] fix nullable phpdocs and useless method visibility of internal class remove some more useless phpdocs Resilience against file_get_contents() race conditions. Turned return type annotations of private methods into php return types.
2 parents 5914a84 + 7b1946a commit 5d2cc4a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Filesystem.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -281,11 +281,9 @@ public function rename(string $origin, string $target, bool $overwrite = false)
281281
/**
282282
* Tells whether a file exists and is readable.
283283
*
284-
* @return bool
285-
*
286284
* @throws IOException When windows path is longer than 258 characters
287285
*/
288-
private function isReadable(string $filename)
286+
private function isReadable(string $filename): bool
289287
{
290288
$maxPathLength = PHP_MAXPATHLEN - 2;
291289

0 commit comments

Comments
 (0)