Skip to content

Commit 5fbe927

Browse files
committed
Corrected FilesystemInterface odcblock param for PR
1 parent dcfc05c commit 5fbe927

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/FilesystemInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public function write($path, $contents, array $config = []);
115115
* Write a new file using a stream.
116116
*
117117
* @param string $path The path of the new file.
118-
* @param resource $contents The file handle.
118+
* @param resource $resource The file handle.
119119
* @param array $config An optional configuration array.
120120
*
121121
* @throws InvalidArgumentException If $resource is not a file handle.
@@ -142,7 +142,7 @@ public function update($path, $contents, array $config = []);
142142
* Update an existing file using a stream.
143143
*
144144
* @param string $path The path of the existing file.
145-
* @param resource $contents The file handle.
145+
* @param resource $resource The file handle.
146146
* @param array $config An optional configuration array.
147147
*
148148
* @throws InvalidArgumentException If $resource is not a file handle.

0 commit comments

Comments
 (0)