Apply fixes from StyleCI

[ci skip] [skip ci]
This commit is contained in:
HDVinnie
2021-03-29 13:50:35 +00:00
committed by StyleCI Bot
parent ae819332d3
commit 22cfdab2ee
2 changed files with 15 additions and 15 deletions

View File

@@ -482,17 +482,17 @@ class AnnounceController extends Controller
return [
'failure reason' => $trackerException->getMessage(),
'min interval' => self::MIN,
/**
* BEP 31: Failure Retry Extension.
*
* However most bittorrent client don't support it, so this feature is disabled default
* - libtorrent-rasterbar (e.g. qBittorrent, Deluge )
* This library will obey the `min interval` key if exist or it will retry in 60s (By default `min interval`)
* - libtransmission (e.g. Transmission )
* This library will ignore any other key if failed
*
* @see http://www.bittorrent.org/beps/bep_0031.html
*/
/**
* BEP 31: Failure Retry Extension.
*
* However most bittorrent client don't support it, so this feature is disabled default
* - libtorrent-rasterbar (e.g. qBittorrent, Deluge )
* This library will obey the `min interval` key if exist or it will retry in 60s (By default `min interval`)
* - libtransmission (e.g. Transmission )
* This library will ignore any other key if failed
*
* @see http://www.bittorrent.org/beps/bep_0031.html
*/
//'retry in' => self::MIN
];
}

View File

@@ -13,13 +13,13 @@
namespace App\Http\Livewire;
use App\Models\TorrentRequest;
use App\Models\TorrentRequestBounty;
use App\Models\TorrentRequestClaim;
use App\Models\User;
use Illuminate\Support\Facades\DB;
use Livewire\Component;
use Livewire\WithPagination;
use App\Models\TorrentRequest;
use Illuminate\Support\Facades\DB;
use App\Models\TorrentRequestClaim;
use App\Models\TorrentRequestBounty;
class TorrentRequestSearch extends Component
{