Weekly fix of my StyleCI violations...
This commit is contained in:
parent
0ca7148e07
commit
77b1a258d9
10 changed files with 6 additions and 14 deletions
|
@ -26,7 +26,6 @@ namespace Pterodactyl\Repositories;
|
|||
|
||||
use DB;
|
||||
use Crypt;
|
||||
use Config;
|
||||
use Validator;
|
||||
use Pterodactyl\Models\Server;
|
||||
use Pterodactyl\Models\Database;
|
||||
|
|
|
@ -635,7 +635,6 @@ class ServerRepository
|
|||
*/
|
||||
protected function changeService($id, array $data)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
protected function processVariables(Models\Server $server, $data, $admin = false)
|
||||
|
@ -692,6 +691,7 @@ class ServerRepository
|
|||
|
||||
// Reload Variables
|
||||
$server->load('variables');
|
||||
|
||||
return $server->option->variables->map(function ($item, $key) use ($server) {
|
||||
$display = $server->variables->where('variable_id', $item->id)->pluck('variable_value')->first();
|
||||
|
||||
|
@ -820,7 +820,6 @@ class ServerRepository
|
|||
|
||||
return true;
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -24,7 +24,6 @@
|
|||
|
||||
namespace Pterodactyl\Repositories;
|
||||
|
||||
use DB;
|
||||
use Cron;
|
||||
use Validator;
|
||||
use Pterodactyl\Models\Task;
|
||||
|
|
Reference in a new issue