Skip to content

Commit 810b534

Browse files
committed
Merge branch '7.1' into 7.2
* 7.1: fix merge [Intl] Update ICU data from 74.1 to 75.1 use DeprecatedCallableInfo for Twig callables if possible [Filesystem] Add a warning about `chown()` and `chgrp()` on Windows [String] Update wcswidth data with Unicode 16 PhpSubprocess: Add flag PREG_OFFSET_CAPTURE to preg_match to identify the offset Work around parse_url() bug [Ldap] Clean `ldap_connect()` call in `LdapTestCase` [HttpFoundation] Update links for X-Accel-Redirect and fail properly when X-Accel-Mapping is missing
2 parents c46c178 + a9da7a3 commit 810b534

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Filesystem.php

+6
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,9 @@ public function chmod(string|iterable $files, int $mode, int $umask = 0000, bool
223223
/**
224224
* Change the owner of an array of files or directories.
225225
*
226+
* This method always throws on Windows, as the underlying PHP function is not supported.
227+
* @see https://www.php.net/chown
228+
*
226229
* @param string|int $user A user name or number
227230
* @param bool $recursive Whether change the owner recursively or not
228231
*
@@ -249,6 +252,9 @@ public function chown(string|iterable $files, string|int $user, bool $recursive
249252
/**
250253
* Change the group of an array of files or directories.
251254
*
255+
* This method always throws on Windows, as the underlying PHP function is not supported.
256+
* @see https://www.php.net/chgrp
257+
*
252258
* @param string|int $group A group name or number
253259
* @param bool $recursive Whether change the group recursively or not
254260
*

0 commit comments

Comments
 (0)