Skip to content

Commit a5aa089

Browse files
DaneEverittStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent e91362e commit a5aa089

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

app/Http/Controllers/Admin/UserController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public function postNew(Request $request)
121121
'password',
122122
'name_first',
123123
'name_last',
124-
'username'
124+
'username',
125125
]));
126126
Alert::success('Account has been successfully created.')->flash();
127127

app/Http/Controllers/Daemon/ServiceController.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,4 @@ public function pull(Request $request, $service, $file)
7676

7777
return response()->file(storage_path('app/services/' . $service . '/' . $file));
7878
}
79-
8079
}

app/Http/Routes/DaemonRoutes.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* Pterodactyl - Panel
4-
* Copyright (c) 2015 - 2016 Dane Everitt <dane@daneeveritt.com>
4+
* Copyright (c) 2015 - 2016 Dane Everitt <dane@daneeveritt.com>.
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal
@@ -26,7 +26,8 @@
2626

2727
use Illuminate\Routing\Router;
2828

29-
class DaemonRoutes {
29+
class DaemonRoutes
30+
{
3031
public function map(Router $router)
3132
{
3233
$router->group(['prefix' => 'daemon'], function () use ($router) {

database/migrations/2017_01_12_135449_add_more_user_data.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function up()
2222
});
2323

2424
DB::transaction(function () {
25-
foreach(User::all() as &$user) {
25+
foreach (User::all() as &$user) {
2626
$user->username = $user->email;
2727
$user->save();
2828
}

0 commit comments

Comments
 (0)