Skip to content

Commit 266c954

Browse files
committed
Merge branch '4.3' into 4.4
* 4.3: chown and chgrp should also accept int as owner and group Fix RememberMe with null password [Validator] Fix plurals for sr_Latn (Serbian language written in latin script) validation messages [PhpUnitBridge][SymfonyTestsListenerTrait] Remove some unneeded code fix PHP const mapping keys using the inline notation Fix that no-cache requires positive validation with the origin, even for fresh responses
2 parents 27c2e31 + fdc0ac5 commit 266c954

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Filesystem.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ public function chmod($files, $mode, $umask = 0000, $recursive = false)
212212
* Change the owner of an array of files or directories.
213213
*
214214
* @param string|iterable $files A filename, an array of files, or a \Traversable instance to change owner
215-
* @param string $user The new owner user name
215+
* @param string|int $user A user name or number
216216
* @param bool $recursive Whether change the owner recursively or not
217217
*
218218
* @throws IOException When the change fails
@@ -239,7 +239,7 @@ public function chown($files, $user, $recursive = false)
239239
* Change the group of an array of files or directories.
240240
*
241241
* @param string|iterable $files A filename, an array of files, or a \Traversable instance to change group
242-
* @param string $group The group name
242+
* @param string|int $group A group name or number
243243
* @param bool $recursive Whether change the group recursively or not
244244
*
245245
* @throws IOException When the change fails

0 commit comments

Comments
 (0)