Skip to content

[Filesystem] filesystem headlines match method names #4617

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 11, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions components/filesystem.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ endpoint for filesystem operations::
string, an array or any object implementing :phpclass:`Traversable` as
the target argument.

Mkdir
mkdir
~~~~~

:method:`Symfony\\Component\\Filesystem\\Filesystem::mkdir` creates a directory.
Expand All @@ -61,7 +61,7 @@ On posix filesystems, directories are created with a default mode value
You can pass an array or any :phpclass:`Traversable` object as the first
argument.

Exists
exists
~~~~~~

:method:`Symfony\\Component\\Filesystem\\Filesystem::exists` checks for the
Expand All @@ -78,7 +78,7 @@ presence of all files or directories and returns ``false`` if a file is missing:
You can pass an array or any :phpclass:`Traversable` object as the first
argument.

Copy
copy
~~~~

:method:`Symfony\\Component\\Filesystem\\Filesystem::copy` is used to copy
Expand All @@ -92,7 +92,7 @@ the third boolean argument::
// image.jpg will be overridden
$fs->copy('image-ICC.jpg', 'image.jpg', true);

Touch
touch
~~~~~

:method:`Symfony\\Component\\Filesystem\\Filesystem::touch` sets access and
Expand All @@ -111,7 +111,7 @@ your own with the second argument. The third argument is the access time::
You can pass an array or any :phpclass:`Traversable` object as the first
argument.

Chown
chown
~~~~~

:method:`Symfony\\Component\\Filesystem\\Filesystem::chown` is used to change
Expand All @@ -127,7 +127,7 @@ the owner of a file. The third argument is a boolean recursive option::
You can pass an array or any :phpclass:`Traversable` object as the first
argument.

Chgrp
chgrp
~~~~~

:method:`Symfony\\Component\\Filesystem\\Filesystem::chgrp` is used to change
Expand All @@ -143,7 +143,7 @@ the group of a file. The third argument is a boolean recursive option::
You can pass an array or any :phpclass:`Traversable` object as the first
argument.

Chmod
chmod
~~~~~

:method:`Symfony\\Component\\Filesystem\\Filesystem::chmod` is used to change
Expand All @@ -159,7 +159,7 @@ the mode of a file. The fourth argument is a boolean recursive option::
You can pass an array or any :phpclass:`Traversable` object as the first
argument.

Remove
remove
~~~~~~

:method:`Symfony\\Component\\Filesystem\\Filesystem::remove` is used to remove
Expand All @@ -172,7 +172,7 @@ files, symlinks, directories easily::
You can pass an array or any :phpclass:`Traversable` object as the first
argument.

Rename
rename
~~~~~~

:method:`Symfony\\Component\\Filesystem\\Filesystem::rename` is used to rename
Expand Down