StyleCI fixes

This commit is contained in:
stanjg 2018-05-04 14:05:42 +02:00
parent 6aabb2da13
commit 17a72d0895
No known key found for this signature in database
GPG key ID: 27D9DF9D28935303
2 changed files with 3 additions and 3 deletions

View file

@ -11,9 +11,9 @@ namespace Pterodactyl\Http\Middleware;
use Closure;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Foundation\Application;
use Illuminate\Contracts\Config\Repository;
use Illuminate\Support\Facades\Auth;
class LanguageMiddleware
{
@ -48,7 +48,7 @@ class LanguageMiddleware
*/
public function handle(Request $request, Closure $next)
{
if (!Auth::check() || $this->config->get('pterodactyl.lang.global')) {
if (! Auth::check() || $this->config->get('pterodactyl.lang.global')) {
$this->app->setLocale($this->config->get('app.locale', 'en'));
} else {
$this->app->setLocale(Auth::user()->language);