Skip to content

Commit a5e066c

Browse files
committed
Merge branch '4.4' into 5.3
* 4.4: [Filesystem] Minor tweaks
2 parents e4cb911 + 01b5cfa commit a5e066c

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)