Skip to content

Commit 9600950

Browse files
committed
minor #4617 [Filesystem] filesystem headlines match method names (xabbuh)
This PR was merged into the 2.3 branch. Discussion ---------- [Filesystem] filesystem headlines match method names | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | all | Fixed tickets | #4450 Commits ------- 9d77a6d filesystem headlines match method names
2 parents 8246693 + 9d77a6d commit 9600950

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

components/filesystem.rst

+9-9
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ endpoint for filesystem operations::
4747
string, an array or any object implementing :phpclass:`Traversable` as
4848
the target argument.
4949

50-
Mkdir
50+
mkdir
5151
~~~~~
5252

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

64-
Exists
64+
exists
6565
~~~~~~
6666

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

81-
Copy
81+
copy
8282
~~~~
8383

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

95-
Touch
95+
touch
9696
~~~~~
9797

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

114-
Chown
114+
chown
115115
~~~~~
116116

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

130-
Chgrp
130+
chgrp
131131
~~~~~
132132

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

146-
Chmod
146+
chmod
147147
~~~~~
148148

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

162-
Remove
162+
remove
163163
~~~~~~
164164

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

175-
Rename
175+
rename
176176
~~~~~~
177177

178178
:method:`Symfony\\Component\\Filesystem\\Filesystem::rename` is used to rename

0 commit comments

Comments
 (0)