Skip to content

Commit

Permalink
Laravel v10 Support (#5507)
Browse files Browse the repository at this point in the history
Laravel 10 support had already been added to composer.json, so just needed to add storage signature fix and enable in GitHub actions
  • Loading branch information
joshhanley committed Jan 26, 2023
1 parent 9416070 commit e673a25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: true
matrix:
php: [8.1, 8.2]
laravel: [9.*]
laravel: [9.*, 10.*]

name: PHP:${{ matrix.php }} / Laravel:${{ matrix.laravel }}

Expand Down
2 changes: 1 addition & 1 deletion src/Features/SupportFileUploads/TemporaryUploadedFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public function delete()
return $this->storage->delete($this->path);
}

public function storeAs($path, $name, $options = [])
public function storeAs($path, $name = null, $options = [])
{
$options = $this->parseOptions($options);

Expand Down

0 comments on commit e673a25

Please sign in to comment.