Skip to content

Commit

Permalink
Fixed phpdoc typos
Browse files Browse the repository at this point in the history
Closes #33631
  • Loading branch information
GrahamCampbell committed Jul 24, 2020
1 parent bdc343e commit 219f406
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Filesystem/FilesystemAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public function put($path, $contents, $options = [])
*
* @param string $path
* @param \Illuminate\Http\File|\Illuminate\Http\UploadedFile|string $file
* @param array $options
* @param mixed $options
* @return string|false
*/
public function putFile($path, $file, $options = [])
Expand All @@ -246,7 +246,7 @@ public function putFile($path, $file, $options = [])
* @param string $path
* @param \Illuminate\Http\File|\Illuminate\Http\UploadedFile|string $file
* @param string $name
* @param array $options
* @param mixed $options
* @return string|false
*/
public function putFileAs($path, $file, $name, $options = [])
Expand Down
1 change: 1 addition & 0 deletions src/Illuminate/Support/Facades/Storage.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* @method static resource|null readStream(string $path)
* @method static bool put(string $path, string|resource $contents, mixed $options = [])
* @method static string|false putFile(string $path, \Illuminate\Http\File|\Illuminate\Http\UploadedFile|string $file, mixed $options = [])
* @method static string|false putFileAs(string $path, \Illuminate\Http\File|\Illuminate\Http\UploadedFile|string $file, string $name, mixed $options = [])
* @method static bool writeStream(string $path, resource $resource, array $options = [])
* @method static string getVisibility(string $path)
* @method static bool setVisibility(string $path, string $visibility)
Expand Down

0 comments on commit 219f406

Please sign in to comment.