Skip to content

Commit

Permalink
Edit methods signatures on Http/UploadedFile (#20705)
Browse files Browse the repository at this point in the history
  • Loading branch information
MohannadNaj authored and taylorotwell committed Aug 23, 2017
1 parent 9b519d0 commit 77703e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Illuminate/Http/UploadedFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static function fake()
* Store the uploaded file on a filesystem disk.
*
* @param string $path
* @param array $options
* @param array|string $options
* @return string|false
*/
public function store($path, $options = [])
Expand All @@ -38,7 +38,7 @@ public function store($path, $options = [])
* Store the uploaded file on a filesystem disk with public visibility.
*
* @param string $path
* @param array $options
* @param array|string $options
* @return string|false
*/
public function storePublicly($path, $options = [])
Expand All @@ -55,7 +55,7 @@ public function storePublicly($path, $options = [])
*
* @param string $path
* @param string $name
* @param array $options
* @param array|string $options
* @return string|false
*/
public function storePubliclyAs($path, $name, $options = [])
Expand All @@ -72,7 +72,7 @@ public function storePubliclyAs($path, $name, $options = [])
*
* @param string $path
* @param string $name
* @param array $options
* @param array|string $options
* @return string|false
*/
public function storeAs($path, $name, $options = [])
Expand Down

0 comments on commit 77703e4

Please sign in to comment.