PHP Style Change (Laravel Pint CI)

This commit is contained in:
HDVinnie
2023-02-10 18:47:22 +00:00
committed by HDVinne
parent 2613bb364e
commit a03f2ee7eb
@@ -70,8 +70,11 @@ class TorrentZipController extends Controller
$fileToDownload = Bencode::bencode($dict);
$filename = str_replace([' ', '/', '\\'], ['.', '-', '-'],
'['.config('torrent.source').']'.$torrent->name.'.torrent');
$filename = str_replace(
[' ', '/', '\\'],
['.', '-', '-'],
'['.config('torrent.source').']'.$torrent->name.'.torrent'
);
$zipArchive->addFromString($filename, $fileToDownload);
}