Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed May 16, 2024
1 parent 5b08887 commit 424afe6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Downloaders/DefaultDownloader.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ class DefaultDownloader implements Downloader
public function getTempFile(string $url): string
{
$context = stream_context_create([
"ssl" => [
"verify_peer" => config('media-library.ssl'),
"verify_peer_name" => config('media-library.ssl')
'ssl' => [
'verify_peer' => config('media-library.ssl'),
'verify_peer_name' => config('media-library.ssl'),
],
'http' => [
'header' => 'User-Agent: Spatie MediaLibrary',
Expand Down

0 comments on commit 424afe6

Please sign in to comment.