File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/Illuminate/Contracts/Filesystem Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -173,15 +173,15 @@ public function lastModified($path);
173
173
*
174
174
* @param string|null $directory
175
175
* @param bool $recursive
176
- * @return array
176
+ * @return array<string>
177
177
*/
178
178
public function files ($ directory = null , $ recursive = false );
179
179
180
180
/**
181
181
* Get all of the files from the given directory (recursive).
182
182
*
183
183
* @param string|null $directory
184
- * @return array
184
+ * @return array<string>
185
185
*/
186
186
public function allFiles ($ directory = null );
187
187
@@ -190,15 +190,15 @@ public function allFiles($directory = null);
190
190
*
191
191
* @param string|null $directory
192
192
* @param bool $recursive
193
- * @return array
193
+ * @return array<string>
194
194
*/
195
195
public function directories ($ directory = null , $ recursive = false );
196
196
197
197
/**
198
198
* Get all (recursive) of the directories within a given directory.
199
199
*
200
200
* @param string|null $directory
201
- * @return array
201
+ * @return array<string>
202
202
*/
203
203
public function allDirectories ($ directory = null );
204
204
You can’t perform that action at this time.
0 commit comments