From 30fc45a096a42a3887f472648f54da8915c5a997 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 8 Oct 2024 09:23:06 +0200 Subject: [PATCH] minor #58472 CS: clean some whitespaces/indentation (keradus) This PR was squashed before being merged into the 7.2 branch. Discussion ---------- CS: clean some whitespaces/indentation | Q | A | ------------- | --- | Branch? | 7.2 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | Fix CS | License | MIT Commits ------- d0f63b8afa1 CS: clean some whitespaces/indentation --- Filesystem.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Filesystem.php b/Filesystem.php index 9f6ed46f0..1dcb36e3f 100644 --- a/Filesystem.php +++ b/Filesystem.php @@ -234,6 +234,7 @@ public function chmod($files, int $mode, int $umask = 0000, bool $recursive = fa * Change the owner of an array of files or directories. * * This method always throws on Windows, as the underlying PHP function is not supported. + * * @see https://www.php.net/chown * * @param string|iterable $files A filename, an array of files, or a \Traversable instance to change owner @@ -264,6 +265,7 @@ public function chown($files, $user, bool $recursive = false) * Change the group of an array of files or directories. * * This method always throws on Windows, as the underlying PHP function is not supported. + * * @see https://www.php.net/chgrp * * @param string|iterable $files A filename, an array of files, or a \Traversable instance to change group