Apply fixes from StyleCI (#325)

This commit is contained in:
Dane Everitt 2017-02-24 18:23:03 -05:00 committed by GitHub
parent cb6b44d4f0
commit bbf9fd12ae
4 changed files with 5 additions and 5 deletions

View file

@ -128,6 +128,7 @@ class ServersController extends Controller
public function postNewServerGetNodes(Request $request)
{
$nodes = Models\Node::with('allocations')->where('location_id', $request->input('location'))->get();
return $nodes->map(function ($item) {
$filtered = $item->allocations->where('server_id', null)->map(function ($map) {
return collect($map)->only(['id', 'ip', 'port']);

View file

@ -24,7 +24,6 @@
namespace Pterodactyl\Http\Middleware;
use Theme;
use Closure;
use Illuminate\Contracts\Auth\Guard;

View file

@ -29,8 +29,8 @@ use Cache;
use Javascript;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Notifications\Notifiable;
use Nicolaslopezj\Searchable\SearchableTrait;
use Illuminate\Database\Eloquent\SoftDeletes;
use Nicolaslopezj\Searchable\SearchableTrait;
class Server extends Model
{