Skip to content

Commit 01b5cfa

Browse files
committed
minor #16111 [Filesystem] Minor tweaks (javiereguiluz)
This PR was merged into the 4.4 branch. Discussion ---------- [Filesystem] Minor tweaks The `note` is unneeded because each method includes the same note in its description. Commits ------- 0fb9a0a [Filesystem] Minor tweaks
2 parents 09e26d1 + 0fb9a0a commit 01b5cfa

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

components/filesystem.rst

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -32,24 +32,12 @@ endpoint for filesystem operations::
3232
echo "An error occurred while creating your directory at ".$exception->getPath();
3333
}
3434

35-
.. note::
36-
37-
Methods :method:`Symfony\\Component\\Filesystem\\Filesystem::mkdir`,
38-
:method:`Symfony\\Component\\Filesystem\\Filesystem::exists`,
39-
:method:`Symfony\\Component\\Filesystem\\Filesystem::touch`,
40-
:method:`Symfony\\Component\\Filesystem\\Filesystem::remove`,
41-
:method:`Symfony\\Component\\Filesystem\\Filesystem::chmod`,
42-
:method:`Symfony\\Component\\Filesystem\\Filesystem::chown` and
43-
:method:`Symfony\\Component\\Filesystem\\Filesystem::chgrp` can receive a
44-
string, an array or any object implementing :phpclass:`Traversable` as
45-
the target argument.
46-
4735
``mkdir``
4836
~~~~~~~~~
4937

5038
:method:`Symfony\\Component\\Filesystem\\Filesystem::mkdir` creates a directory recursively.
5139
On POSIX filesystems, directories are created with a default mode value
52-
`0777`. You can use the second argument to set your own mode::
40+
``0777``. You can use the second argument to set your own mode::
5341

5442
$filesystem->mkdir('/tmp/photos', 0700);
5543

0 commit comments

Comments
 (0)