27 lines
424 B
PHP
27 lines
424 B
PHP
<?php
|
|
|
|
namespace App\Util;
|
|
|
|
class ProviderList
|
|
{
|
|
public static $providers = [
|
|
'1337x',
|
|
'Comando',
|
|
'EZTV',
|
|
'ilCorSaRoNeRo',
|
|
'MagnetDL',
|
|
'MejorTorrent',
|
|
'RARBG',
|
|
'Rutor',
|
|
'Rutracker',
|
|
'ThePirateBay',
|
|
'Torrent9',
|
|
'TorrentGalaxy',
|
|
];
|
|
|
|
public static function getProviders()
|
|
{
|
|
return self::$providers;
|
|
}
|
|
}
|