Apply fixes from StyleCI

[ci skip] [skip ci]
This commit is contained in:
DariusIII
2018-04-27 07:00:10 +00:00
committed by StyleCI Bot
parent 2871d02286
commit 5e398bbb63
+4 -3
View File
@@ -143,9 +143,10 @@ class GetNzbController extends BasePageController
}
$headers += ['X-DNZB-RCode:' => '200',
'X-DNZB-RText:' => 'OK, NZB content follows.'];
'X-DNZB-RText:' => 'OK, NZB content follows.', ];
return response()->streamDownload(function () use($nzbPath) {readgzfile($nzbPath);}, $cleanName, $headers);
return response()->streamDownload(function () use ($nzbPath) {
readgzfile($nzbPath);
}, $cleanName, $headers);
}
}